Remove some unused code.

MFC after:	2 weeks
This commit is contained in:
mav 2017-01-20 16:01:01 +00:00
parent bb08bd9aa7
commit b58650cf7c
2 changed files with 0 additions and 30 deletions

View File

@ -704,17 +704,6 @@ usage(void)
exit(1);
}
char *
checked_strdup(const char *s)
{
char *c;
c = strdup(s);
if (c == NULL)
xo_err(1, "strdup");
return (c);
}
int
main(int argc, char **argv)
{

View File

@ -40,7 +40,6 @@
#define DEFAULT_IQN "iqn.1994-09.org.freebsd:"
#define MAX_NAME_LEN 223
#define MAX_DATA_SEGMENT_LENGTH 65536
#define AUTH_METHOD_UNSPECIFIED 0
#define AUTH_METHOD_NONE 1
@ -88,23 +87,6 @@ struct conf {
TAILQ_HEAD(, target) conf_targets;
};
#define CONN_SESSION_TYPE_NONE 0
#define CONN_SESSION_TYPE_DISCOVERY 1
#define CONN_SESSION_TYPE_NORMAL 2
struct connection {
struct target *conn_target;
int conn_socket;
int conn_session_type;
uint32_t conn_cmdsn;
uint32_t conn_statsn;
size_t conn_max_data_segment_length;
size_t conn_max_burst_length;
size_t conn_max_outstanding_r2t;
int conn_header_digest;
int conn_data_digest;
};
struct conf *conf_new(void);
struct conf *conf_new_from_file(const char *path);
void conf_delete(struct conf *conf);
@ -116,7 +98,6 @@ void target_delete(struct target *ic);
void print_periphs(int session_id);
char *checked_strdup(const char *);
bool valid_iscsi_name(const char *name);
int parse_enable(const char *enable);