Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.8 17 lines 569 B view raw
1#ifndef ISCSI_TARGET_NEGO_H 2#define ISCSI_TARGET_NEGO_H 3 4#define DECIMAL 0 5#define HEX 1 6 7extern void convert_null_to_semi(char *, int); 8extern int extract_param(const char *, const char *, unsigned int, char *, 9 unsigned char *); 10extern struct iscsi_login *iscsi_target_init_negotiation( 11 struct iscsi_np *, struct iscsi_conn *, char *); 12extern int iscsi_target_start_negotiation( 13 struct iscsi_login *, struct iscsi_conn *); 14extern void iscsi_target_nego_release( 15 struct iscsi_login *, struct iscsi_conn *); 16 17#endif /* ISCSI_TARGET_NEGO_H */