예제 #1
0
파일: dns_tcp.c 프로젝트: Mybrc91/junkie
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);
}
예제 #2
0
파일: mgcp.c 프로젝트: 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();
}
예제 #3
0
파일: rpc.c 프로젝트: securactive/junkie
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();
}
예제 #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();
}
예제 #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();
}
예제 #6
0
파일: dhcp.c 프로젝트: bonnefoa/junkie
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();
}
예제 #7
0
파일: dns_tcp.c 프로젝트: krissg/junkie
void dns_tcp_fini(void)
{
    port_muxer_dtor(&tcp_port_muxer, &tcp_port_muxers);
    uniq_proto_dtor(&uniq_proto_dns_tcp);
}