• Home
  • Raw
  • Download

Lines Matching refs:SOCKET

93 	SOCKET sockctrl;
108 static SOCKET sockmain;
122 SOCKET rmt_sockctrl; /* socket ID of the socket used for the control connection */
123 SOCKET rmt_sockdata; /* socket ID of the socket used for the data connection */
170 static int rpcap_recv_msg_header(SOCKET sock, SSL *, struct rpcap_header *header, char *errbuf);
171 static int rpcap_check_msg_ver(SOCKET sock, SSL *, uint8 expected_ver, struct rpcap_header *header,…
172 static int rpcap_check_msg_type(SOCKET sock, SSL *, uint8 request_type, struct rpcap_header *header…
173 static int rpcap_process_msg_header(SOCKET sock, SSL *, uint8 ver, uint8 request_type, struct rpcap…
174 static int rpcap_recv(SOCKET sock, SSL *, void *buffer, size_t toread, uint32 *plen, char *errbuf);
175 static void rpcap_msg_err(SOCKET sockctrl, SSL *, uint32 plen, char *remote_errbuf);
176 static int rpcap_discard(SOCKET sock, SSL *, uint32 len, char *errbuf);
1072 SOCKET sockdata = 0; /* socket descriptor of the data connection */ in pcap_startcapture_remote()
1279 SOCKET socktemp; /* We need another socket, since we're going to accept() a connection */ in pcap_startcapture_remote()
1914 static int rpcap_doauth(SOCKET sockctrl, SSL *ssl, uint8 *ver, struct pcap_rmtauth *auth, char *err… in rpcap_doauth()
2132 int *activep, SOCKET *sockctrlp, uint8 *uses_sslp, SSL **sslp, in rpcap_setup_session()
2314 SOCKET sockctrl; in pcap_open_rpcap()
2483 SOCKET sockctrl; /* socket descriptor of the control connection */ in pcap_findalldevs_ex_remote()
2786 SOCKET pcap_remoteact_accept_ex(const char *address, const char *port, const char *hostlist, char *… in pcap_remoteact_accept_ex()
2793 SOCKET sockctrl; /* keeps the main socket identifier */ in pcap_remoteact_accept_ex()
2810 return (SOCKET)-1; in pcap_remoteact_accept_ex()
2817 return (SOCKET)-2; in pcap_remoteact_accept_ex()
2824 return (SOCKET)-2; in pcap_remoteact_accept_ex()
2832 return (SOCKET)-2; in pcap_remoteact_accept_ex()
2849 return (SOCKET)-2; in pcap_remoteact_accept_ex()
2860 return (SOCKET)-1; in pcap_remoteact_accept_ex()
2865 return (SOCKET)-1; in pcap_remoteact_accept_ex()
2883 return (SOCKET)-1; in pcap_remoteact_accept_ex()
2899 return (SOCKET)-1; in pcap_remoteact_accept_ex()
2918 return (SOCKET)-3; in pcap_remoteact_accept_ex()
2963 return (SOCKET)-1; in pcap_remoteact_accept_ex()
2975 SOCKET pcap_remoteact_accept(const char *address, const char *port, const char *hostlist, char *con… in pcap_remoteact_accept()
3164 static int rpcap_recv_msg_header(SOCKET sock, SSL *ssl, struct rpcap_header *header, char *errbuf) in rpcap_recv_msg_header()
3184 static int rpcap_check_msg_ver(SOCKET sock, SSL *ssl, uint8 expected_ver, struct rpcap_header *head… in rpcap_check_msg_ver()
3215 static int rpcap_check_msg_type(SOCKET sock, SSL *ssl, uint8 request_type, struct rpcap_header *hea… in rpcap_check_msg_type()
3285 static int rpcap_process_msg_header(SOCKET sock, SSL *ssl, uint8 expected_ver, uint8 request_type, … in rpcap_process_msg_header()
3317 static int rpcap_recv(SOCKET sock, SSL *ssl, void *buffer, size_t toread, uint32 *plen, char *errbu… in rpcap_recv()
3340 static void rpcap_msg_err(SOCKET sockctrl, SSL *ssl, uint32 plen, char *remote_errbuf) in rpcap_msg_err()
3407 static int rpcap_discard(SOCKET sock, SSL *ssl, uint32 len, char *errbuf) in rpcap_discard()