?? server.h
字號:
struct ElementList { char *element; struct ElementList *next;};struct ConfigLine { struct ElementList *uids; struct ElementList *programs; struct ElementList *IPAddresses; struct ElementList *ports;};struct ConfigEntry { char *uid; char *program; char *IPAddress; int port;};struct FirewallConfig { struct ConfigEntry *entry; struct FirewallConfig *left; struct FirewallConfig *right;};extern struct FirewallConfig *addRule (char *, struct FirewallConfig *, int *); extern void showTable (struct FirewallConfig *);extern int compareEntry (struct ConfigEntry *, struct ConfigEntry *);extern struct ConfigLine *parseLine (char *, int *);extern char checkEntry (char *, struct FirewallConfig *, int *);void freeElementList (struct ElementList *);#define WRONG_IP_ADDRESS 1
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -