Lines Matching refs:proxy_entry
91 struct proxy_entry { struct
110 struct proxy_entry *next; argument
111 struct proxy_entry *last; argument
139 static void RuleAdd(struct libalias *la, struct proxy_entry *);
140 static void RuleDelete(struct proxy_entry *);
201 RuleAdd(struct libalias *la, struct proxy_entry *entry) in RuleAdd()
204 struct proxy_entry *ptr; in RuleAdd()
205 struct proxy_entry *ptr_last; in RuleAdd()
245 RuleDelete(struct proxy_entry *entry) in RuleDelete()
266 struct proxy_entry *ptr; in RuleNumberDelete()
272 struct proxy_entry *ptr_next; in RuleNumberDelete()
463 struct proxy_entry *ptr; in ProxyCheck()
562 struct proxy_entry *proxy_entry; in LibAliasProxyRule() local
843 proxy_entry = malloc(sizeof(struct proxy_entry)); in LibAliasProxyRule()
844 if (proxy_entry == NULL) { in LibAliasProxyRule()
849 proxy_entry->proxy_type = proxy_type; in LibAliasProxyRule()
850 proxy_entry->rule_index = rule_index; in LibAliasProxyRule()
851 proxy_entry->proto = proto; in LibAliasProxyRule()
852 proxy_entry->proxy_port = htons(proxy_port); in LibAliasProxyRule()
853 proxy_entry->server_port = htons(server_port); in LibAliasProxyRule()
854 proxy_entry->server_addr = server_addr; in LibAliasProxyRule()
855 proxy_entry->src_addr.s_addr = src_addr.s_addr & src_mask.s_addr; in LibAliasProxyRule()
856 proxy_entry->dst_addr.s_addr = dst_addr.s_addr & dst_mask.s_addr; in LibAliasProxyRule()
857 proxy_entry->src_mask = src_mask; in LibAliasProxyRule()
858 proxy_entry->dst_mask = dst_mask; in LibAliasProxyRule()
860 RuleAdd(la, proxy_entry); in LibAliasProxyRule()