Lines Matching refs:word
39 char *word; in IsValidFlowRule() local
49 word = cf; in IsValidFlowRule()
50 SKIP_SPACES(word); in IsValidFlowRule()
53 while (*word) { in IsValidFlowRule()
56 SKIP_CHAR(word); in IsValidFlowRule()
57 SKIP_SPACES(word); in IsValidFlowRule()
62 if (!strncmp(word, KW_TCP, sizeof(KW_TCP) - 1) || in IsValidFlowRule()
63 !strncmp(word, KW_SRC, sizeof(KW_SRC) - 1) || in IsValidFlowRule()
64 !strncmp(word, KW_DST, sizeof(KW_DST) - 1) || in IsValidFlowRule()
65 !strncmp(word, KW_NOT, sizeof(KW_NOT) - 1) || in IsValidFlowRule()
66 !strncmp(word, KW_AND, sizeof(KW_AND) - 1) || in IsValidFlowRule()
67 !strncmp(word, KW_OR, sizeof(KW_OR) - 1)) { in IsValidFlowRule()
71 else if (!strncmp(word, KW_HOST, sizeof(KW_HOST) - 1) || in IsValidFlowRule()
72 !strncmp(word, KW_NET, sizeof(KW_NET) - 1) || in IsValidFlowRule()
73 !strncmp(word, KW_MASK, sizeof(KW_MASK) - 1) || in IsValidFlowRule()
74 !strncmp(word, KW_PORT, sizeof(KW_PORT) - 1) || in IsValidFlowRule()
75 !strncmp(word, KW_PORTRANGE, sizeof(KW_PORTRANGE) - 1)) { in IsValidFlowRule()
80 TRACE_ERROR("Invalid keyword in filter (%s)\n", word); in IsValidFlowRule()
84 SKIP_CHAR(word); in IsValidFlowRule()
85 SKIP_SPACES(word); in IsValidFlowRule()