Definition at line 102 of file sock.cpp.
Public Member Functions | |
s_send_later () | |
Public Attributes | |
list< s_data > | data |
Array of data packets. | |
time_t | last_send |
Timestamp of last send operation. | |
s_socket | socket |
Socket handle. |
|
Definition at line 110 of file sock.cpp. References s_socket::clear(), data, last_send, and socket. 00111 { 00112 //has_error=false; 00113 socket.clear(); 00114 data.clear(); 00115 //last_error=0; 00116 last_send=time(NULL); 00117 }
Here is the call graph for this function: ![]() |
|
Array of data packets.
Definition at line 106 of file sock.cpp. Referenced by s_send_later(). |
|
Timestamp of last send operation.
Definition at line 108 of file sock.cpp. Referenced by s_send_later(), sock_create_later(), and sock_send(). |
|
Socket handle.
Definition at line 105 of file sock.cpp. Referenced by s_send_later(), sock_create_later(), and sock_send(). |