]> git.ozlabs.org Git - ccan/blob - ccan/iscsi/_info
iscsi: new module from Ronnie.
[ccan] / ccan / iscsi / _info
1 #include <stdio.h>
2 #include <string.h>
3
4 /**
5  * iscsi - async library for iscsi functionality
6  *
7  * The iscsi module is a work in progress.
8  *
9  * It aims to become a full async library for iscsi functionality,
10  * including all features required to establish and maintain a iscsi
11  * session, as well as a low level scsi library to create scsi cdb's
12  * and parse/unmarshall data-in structures.
13  *
14  * License: GPL (3 or any later version)
15  * Author: Ronnie Sahlberg <ronniesahlberg@gmail.com>
16  */
17 int main(int argc, char *argv[])
18 {
19         if (argc != 2)
20                 return 1;
21
22         if (strcmp(argv[1], "depends") == 0) {
23                 return 0;
24         }
25
26         return 1;
27 }
28