Example #1
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);
}
Example #2
0
File: mgcp.c Project: rixed/junkie
void mgcp_fini(void)
{
#   ifdef DELETE_ALL_AT_EXIT
    port_muxer_dtor(&udp_port_muxer_agent, &udp_port_muxers);
    port_muxer_dtor(&udp_port_muxer_gw, &udp_port_muxers);
    proto_dtor(&proto_mgcp_);
#   endif
    log_category_proto_mgcp_fini();
}
Example #3
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();
}
Example #4
0
void netbios_fini(void)
{
#   ifdef DELETE_ALL_AT_EXIT
    port_muxer_dtor(&tcp_port_muxer, &tcp_port_muxers);
    proto_dtor(proto_netbios);
#   endif
    log_category_proto_netbios_fini();
}
Example #5
0
void tns_fini(void)
{
#   ifdef DELETE_ALL_AT_EXIT
    port_muxer_dtor(&tns_tcp_muxer, &tcp_port_muxers);
    proto_dtor(&proto_tns_);
#   endif
    log_category_proto_tns_fini();
}
Example #6
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();
}
Example #7
0
void dns_tcp_fini(void)
{
    port_muxer_dtor(&tcp_port_muxer, &tcp_port_muxers);
    uniq_proto_dtor(&uniq_proto_dns_tcp);
}