summaryrefslogtreecommitdiff
path: root/usr/host.h
blob: 894ab911df95a8be2d6f21a33ac954f2ad075a79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef ISCSI_HOST_H
#define ISCSI_HOST_H
#include <sys/types.h>

#include "types.h"
#include "config.h"

#define MAX_CHAP_BUF_SZ 4096
#define REQ_CHAP_BUF_SZ (MAX_CHAP_BUF_SZ + sizeof(struct iscsi_uevent))

struct host_info {
        struct iface_rec iface;
        uint32_t host_no;
};

extern int host_info_print(int info_level, uint32_t host_no);

#endif