Esempio n. 1
0
File: icmp.c Progetto: krissg/junkie
void icmp_fini(void)
{
    ip_subproto_dtor(&icmp_ip_subproto);
    ip6_subproto_dtor(&icmp_ip6_subproto);
    uniq_proto_dtor(&uniq_proto_icmp);
    log_category_proto_icmp_fini();
}
Esempio n. 2
0
void rtp_fini(void)
{
#   ifdef DELETE_ALL_AT_EXIT
    uniq_proto_dtor(&uniq_proto_rtp);
#   endif
    log_category_proto_rtp_fini();
}
Esempio n. 3
0
void dhcp_fini(void)
{
#   ifdef DELETE_ALL_AT_EXIT
    port_muxer_dtor(&dhcp_port_muxer, &udp_port_muxers);
    uniq_proto_dtor(&uniq_proto_dhcp);
#   endif
    log_category_proto_dhcp_fini();
}
Esempio n. 4
0
void fcoe_fini(void)
{
#   ifdef DELETE_ALL_AT_EXIT
    eth_subproto_dtor(&fcoe_eth_subproto);
    uniq_proto_dtor(&uniq_proto_fcoe);
#   endif
    log_category_proto_fcoe_fini();
}
Esempio n. 5
0
void dns_tcp_fini(void)
{
    port_muxer_dtor(&llmnr_tcp_port_muxer, &tcp_port_muxers);
    port_muxer_dtor(&nbns_tcp_port_muxer, &tcp_port_muxers);
    port_muxer_dtor(&mdns_tcp_port_muxer, &tcp_port_muxers);
    port_muxer_dtor(&dns_tcp_port_muxer, &tcp_port_muxers);
    uniq_proto_dtor(&uniq_proto_dns_tcp);
}
Esempio n. 6
0
void icmpv6_fini(void)
{
#   ifdef DELETE_ALL_AT_EXIT
    ip6_subproto_dtor(&icmpv6_ip6_subproto);
    uniq_proto_dtor(&uniq_proto_icmpv6);
#   endif
    log_category_proto_icmpv6_fini();
}
Esempio n. 7
0
void rpc_fini(void)
{
#   ifdef DELETE_ALL_AT_EXIT
    port_muxer_dtor(&nfs_tcp_port_muxer, &tcp_port_muxers);
    port_muxer_dtor(&sun_rpc_tcp_port_muxer, &tcp_port_muxers);
    port_muxer_dtor(&nfs_udp_port_muxer, &udp_port_muxers);
    port_muxer_dtor(&sun_rpc_udp_port_muxer, &udp_port_muxers);
    uniq_proto_dtor(&uniq_proto_rpc);
#   endif

    log_category_proto_rpc_fini();
}
Esempio n. 8
0
void netbios_fini(void)
{
    uniq_proto_dtor(&uniq_proto_netbios);
    log_category_proto_netbios_fini();
}
Esempio n. 9
0
File: rtp.c Progetto: krissg/junkie
void rtp_fini(void)
{
    uniq_proto_dtor(&uniq_proto_rtp);
    log_category_proto_rtp_fini();
}
Esempio n. 10
0
void dns_tcp_fini(void)
{
    port_muxer_dtor(&tcp_port_muxer, &tcp_port_muxers);
    uniq_proto_dtor(&uniq_proto_dns_tcp);
}