Home | History | Annotate | Download | only in slirp-android

Lines Matching refs:ate

890     struct fw_allow_entry** ate;
893 ate = &allow_tcp_entries;
896 ate = &allow_udp_entries;
902 while(*ate != NULL)
903 ate = &(*ate)->next;
905 *ate = malloc(sizeof(**ate));
906 if (*ate == NULL) {
912 (*ate)->next = NULL;
913 (*ate)->dst_addr = dst_addr;
914 (*ate)->dst_lport = dst_lport;
915 (*ate)->dst_hport = dst_hport;
939 struct fw_allow_entry* ate;
944 ate = allow_tcp_entries;
950 ate = allow_udp_entries;
958 while(ate) {
959 if ((ate->dst_lport <= dst_port) && (dst_port <= ate->dst_hport)) {
961 if (ate->dst_addr == 0 || ate->dst_addr == dst_addr)
964 ate = ate->next;