forked from openSUSE/fcoe-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fcoe_clif.h
73 lines (62 loc) · 1.85 KB
/
fcoe_clif.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
* Copyright(c) 2010 Intel Corporation. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU General Public License,
* version 2, as published by the Free Software Foundation.
*
* This program is distributed in the hope it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along with
* this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
*
* Maintained at www.Open-FCoE.org
*/
#ifndef _FCOE_CLIF_H_
#define _FCOE_CLIF_H_
/*
* A DCB file is incorrectly including linux/if.h which is redefining
* IFF_UP. This makes it so we cannot include net/if.h. We have to
* redefine IFNAMSIZ to work around this until DCB is corrected.
*/
#define CLIF_IFNAME "fcm_clif"
#define CLIF_PID_FILE _PATH_VARRUN "fcoemon.pid"
#define CLIF_CMD_RESPONSE_TIMEOUT 30
#define MAX_MSGBUF 512
enum clif_action {
CLIF_NONE = 0,
CLIF_CREATE_CMD,
CLIF_DESTROY_CMD,
CLIF_RESET_CMD,
CLIF_SCAN_CMD,
CLIF_PID_CMD
};
/**
* struct clif - Internal structure for client interface library
*
* This structure is used by fcoeadm client interface to store internal data.
*/
struct clif_sock_info {
int socket_fd;
struct sockaddr_un local;
struct sockaddr_un dest;
};
enum clif_flags {
CLIF_FLAGS_NONE = 0,
CLIF_FLAGS_FABRIC = 0x00,
CLIF_FLAGS_VN2VN = 0x01,
CLIF_FLAGS_MODE_MASK = 0x0F, /* Mask for mode encoding */
};
/*
* Description of fcoemon and fcoeadm socket data structure interface
*/
struct clif_data {
enum clif_action cmd;
char ifname[IFNAMSIZ];
enum clif_flags flags;
};
#endif /* _FCOE_CLIF_H_ */