- t2ex
- bsd_source/lib/libc/src_bsd/include/sys/queue.h - 27.6KB - 568 lines
166: */
167: #define LIST_HEAD(name, type) \
168: struct name { \
- bsd_source/t2ex/network/net/src_bsd/kern/uipc_accf.c - 12.6KB - 401 lines
90:
91: static LIST_HEAD(, accept_filter) accept_filtlsthd =
92: LIST_HEAD_INITIALIZER(&accept_filtlsthd);
- bsd_source/t2ex/network/net/src_bsd/net/bpf.c - 56.1KB - 2,015 lines
143: struct bpf_if *bpf_iflist;
144: LIST_HEAD(, bpf_d) bpf_list;
145:
- bsd_source/t2ex/network/net/src_bsd/net/if.c - 61.4KB - 2,117 lines
162:
163: static LIST_HEAD(, if_clone) if_cloners = LIST_HEAD_INITIALIZER(if_cloners);
164: static int if_cloners_count;
- bsd_source/t2ex/network/net/src_bsd/net/if_tun.c - 33.3KB - 1,241 lines
78:
79: static LIST_HEAD(, tun_softc) tun_softc_list;
80: static LIST_HEAD(, tun_softc) tunz_softc_list;
- More results from if_tun.c
- bsd_source/t2ex/network/net/src_bsd/net/route.c - 44.7KB - 1,375 lines
998:
999: LIST_HEAD(, rttimer_queue) rttimer_queue_head;
1000: static int rt_init_done = 0;
- bsd_source/t2ex/network/net/src_bsd/netinet/igmp.c - 22.5KB - 665 lines
84: int igmp_timers_are_running;
85: static LIST_HEAD(, router_info) rti_head = LIST_HEAD_INITIALIZER(rti_head);
86:
- bsd_source/t2ex/network/net/src_bsd/netinet/ip_encap.c - 27.8KB - 992 lines
160:
161: LIST_HEAD(, encaptab) encaptab = LIST_HEAD_INITIALIZER(&encaptab);
162:
- bsd_source/t2ex/network/net/src_bsd/netinet/ip_icmp.c - 44.0KB - 1,314 lines
159:
160: LIST_HEAD(, icmp_mtudisc_callback) icmp_mtudisc_callbacks =
161: LIST_HEAD_INITIALIZER(&icmp_mtudisc_callbacks);
- bsd_source/t2ex/network/net/src_bsd/netinet/ip_var.h - 10.8KB - 263 lines
184:
185: extern LIST_HEAD(ipqhead, ipq) ipq[]; /* ip reass. queue */
186: extern int ip_defttl; /* default IP ttl */