X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=ccan%2Fiscsi%2F_info;fp=ccan%2Fiscsi%2F_info;h=6e02fec0db936df59220f5eb356fc53f86932aa1;hb=cb522f25cada0d3429c69d0fbaa5bd337a422cdd;hp=0000000000000000000000000000000000000000;hpb=0473813acdfad62221ec9f2b9b41bc10d1f4586d;p=ccan diff --git a/ccan/iscsi/_info b/ccan/iscsi/_info new file mode 100644 index 00000000..6e02fec0 --- /dev/null +++ b/ccan/iscsi/_info @@ -0,0 +1,28 @@ +#include +#include + +/** + * iscsi - async library for iscsi functionality + * + * The iscsi module is a work in progress. + * + * It aims to become a full async library for iscsi functionality, + * including all features required to establish and maintain a iscsi + * session, as well as a low level scsi library to create scsi cdb's + * and parse/unmarshall data-in structures. + * + * License: GPL (3 or any later version) + * Author: Ronnie Sahlberg + */ +int main(int argc, char *argv[]) +{ + if (argc != 2) + return 1; + + if (strcmp(argv[1], "depends") == 0) { + return 0; + } + + return 1; +} +