Ejemplo n.º 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);
}
Ejemplo n.º 2
0
Archivo: mgcp.c Proyecto: 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();
}
Ejemplo n.º 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();
}
Ejemplo n.º 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();
}
Ejemplo n.º 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();
}
Ejemplo n.º 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();
}
Ejemplo n.º 7
0
void dns_tcp_fini(void)
{
    port_muxer_dtor(&tcp_port_muxer, &tcp_port_muxers);
    uniq_proto_dtor(&uniq_proto_dns_tcp);
}