Lines Matching refs:proxy_entry
92 struct proxy_entry { struct
111 struct proxy_entry *next; argument
112 struct proxy_entry *last; argument
140 static void RuleAdd(struct libalias *la, struct proxy_entry *);
141 static void RuleDelete(struct proxy_entry *);
202 RuleAdd(struct libalias *la, struct proxy_entry *entry) in RuleAdd()
205 struct proxy_entry *ptr; in RuleAdd()
206 struct proxy_entry *ptr_last; in RuleAdd()
246 RuleDelete(struct proxy_entry *entry) in RuleDelete()
267 struct proxy_entry *ptr; in RuleNumberDelete()
273 struct proxy_entry *ptr_next; in RuleNumberDelete()
461 struct proxy_entry *ptr; in ProxyCheck()
559 struct proxy_entry *proxy_entry; in LibAliasProxyRule() local
840 proxy_entry = malloc(sizeof(struct proxy_entry)); in LibAliasProxyRule()
841 if (proxy_entry == NULL) { in LibAliasProxyRule()
846 proxy_entry->proxy_type = proxy_type; in LibAliasProxyRule()
847 proxy_entry->rule_index = rule_index; in LibAliasProxyRule()
848 proxy_entry->proto = proto; in LibAliasProxyRule()
849 proxy_entry->proxy_port = htons(proxy_port); in LibAliasProxyRule()
850 proxy_entry->server_port = htons(server_port); in LibAliasProxyRule()
851 proxy_entry->server_addr = server_addr; in LibAliasProxyRule()
852 proxy_entry->src_addr.s_addr = src_addr.s_addr & src_mask.s_addr; in LibAliasProxyRule()
853 proxy_entry->dst_addr.s_addr = dst_addr.s_addr & dst_mask.s_addr; in LibAliasProxyRule()
854 proxy_entry->src_mask = src_mask; in LibAliasProxyRule()
855 proxy_entry->dst_mask = dst_mask; in LibAliasProxyRule()
857 RuleAdd(la, proxy_entry); in LibAliasProxyRule()