Update of /cvsroot/netadm/gwc/include
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15510/include
Modified Files:
confutil.h
Log Message:
FIX:
FIX: index mapping : ugly index stemed from _CMD_SND_FC_RET=0
sys_ucmd_e must be matched with ucmdtab []
FIX: ugly condition: process except gwcadmd must communicate with gwcadmd using IPC.
REMAIN: user layer ( apply_fc ), kernel layer (pf)
Index: confutil.h
===================================================================
RCS file: /cvsroot/netadm/gwc/include/confutil.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** confutil.h 7 Mar 2006 04:45:09 -0000 1.5
--- confutil.h 7 Mar 2006 17:04:51 -0000 1.6
***************
*** 14,19 ****
/* U T I L F U N C I D X */
typedef enum {
! _CMD_SND_FC_RET = 0x00000001,
! _CMD_GET_FC_NET, /* get fc net pointer in the shared memory by name*/
_CMD_GET_FC_SVC, /* get fc svc pointer in the shared memory by name*/
_CMD_GET_FC_FW, /* get fc fw pointer in the shared memory by name*/
--- 14,18 ----
/* U T I L F U N C I D X */
typedef enum {
! _CMD_GET_FC_NET = 0, /* get fc net pointer in the shared memory by name*/
_CMD_GET_FC_SVC, /* get fc svc pointer in the shared memory by name*/
_CMD_GET_FC_FW, /* get fc fw pointer in the shared memory by name*/
***************
*** 24,27 ****
--- 23,27 ----
_CMD_APPLY_FC_IPOL, /* apply all internal fc policies through ioctl */
_CMD_DUMP_FC_IPOL, /* dump all internal fc policies to stout */
+ _CMD_SND_FC_RET,
} sys_ucmd_e;
|