#include "sys/types.h" #include "whosond.h" #include "rtconfig.h" extern struct _cfgdesc desc_wso_clnt_tcp_cfg; extern struct _evdesc wso_tcp_clnt_connect(void *priv); extern struct _cfgdesc desc_wso_clnt_udp_cfg; extern struct _evdesc wso_udp_clnt_connect(void *priv); extern struct _cfgdesc desc_wso_clnt_unix_cfg; extern struct _evdesc wso_unix_clnt_connect(void *priv); extern struct _cfgdesc desc_wso_clnt_unixd_cfg; extern struct _evdesc wso_unixd_clnt_connect(void *priv); struct _cfgrec wso_cfglist[] = { {"tcp",&desc_wso_clnt_tcp_cfg,{wso_tcp_clnt_connect}}, {"udp",&desc_wso_clnt_udp_cfg,{wso_udp_clnt_connect}}, {"unix",&desc_wso_clnt_unix_cfg,{wso_unix_clnt_connect}}, {"unixd",&desc_wso_clnt_unixd_cfg,{wso_unixd_clnt_connect}}, {(void*)0,(void*)0,{(void*)0}} };