Kea 2.7.5
|
The TCPSocket
class is a concrete derived class of IOAsioSocket
that represents a TCP socket.
More...
#include <tcp_socket.h>
Public Member Functions | |
TCPSocket (boost::asio::ip::tcp::socket &socket) | |
Constructor from an ASIO TCP socket. | |
TCPSocket (const IOServicePtr &service) | |
Constructor. | |
virtual | ~TCPSocket () |
Destructor. | |
virtual void | asyncReceive (void *data, size_t length, size_t offset, IOEndpoint *endpoint, C &callback) |
Receive Asynchronously. | |
void | asyncSend (const void *data, size_t length, C &callback) |
Send Asynchronously without count. | |
virtual void | asyncSend (const void *data, size_t length, const IOEndpoint *endpoint, C &callback) |
Send Asynchronously. | |
virtual void | cancel () |
Cancel I/O On Socket. | |
virtual void | close () |
Close socket. | |
virtual boost::asio::ip::tcp::socket & | getASIOSocket () const |
Returns reference to the underlying ASIO socket. | |
virtual int | getNative () const |
Return file descriptor of underlying socket. | |
virtual int | getProtocol () const |
Return protocol of socket. | |
virtual bool | isOpenSynchronous () const |
Is "open()" synchronous? | |
bool | isUsable () const |
Checks if the connection is usable. | |
virtual void | open (const IOEndpoint *endpoint, C &callback) |
Open Socket. | |
virtual bool | processReceivedData (const void *staging, size_t length, size_t &cumulative, size_t &offset, size_t &expected, isc::util::OutputBufferPtr &buff) |
Process received data packet. | |
Public Member Functions inherited from isc::asiolink::IOAsioSocket< C > | |
virtual | ~IOAsioSocket ()=default |
The destructor. | |
Public Member Functions inherited from isc::asiolink::IOSocket | |
virtual | ~IOSocket () |
The destructor. | |
Additional Inherited Members | |
Public Types inherited from isc::asiolink::IOSocket | |
typedef boost::asio::socket_base::reuse_address | ReuseAddress |
Represents SO_REUSEADDR socket option. | |
Static Public Member Functions inherited from isc::asiolink::IOSocket | |
static IOSocket & | getDummyUDPSocket () |
Return a non-usable "dummy" UDP socket for testing. | |
static IOSocket & | getDummyTCPSocket () |
Return a non-usable "dummy" TCP socket for testing. | |
Protected Member Functions inherited from isc::asiolink::IOAsioSocket< C > | |
IOAsioSocket () | |
The default constructor. | |
Protected Member Functions inherited from isc::asiolink::IOSocket | |
IOSocket () | |
The default constructor. | |
The TCPSocket
class is a concrete derived class of IOAsioSocket
that represents a TCP socket.
C | Callback type |
Definition at line 48 of file tcp_socket.h.
isc::asiolink::TCPSocket< C >::TCPSocket | ( | boost::asio::ip::tcp::socket & | socket | ) |
Constructor from an ASIO TCP socket.
socket | The ASIO representation of the TCP socket. It is assumed that the caller will open and close the socket, so these operations are a no-op for that socket. |
Definition at line 258 of file tcp_socket.h.
isc::asiolink::TCPSocket< C >::TCPSocket | ( | const IOServicePtr & | service | ) |
Constructor.
Used when the TCPSocket is being asked to manage its own internal socket. In this case, the open() and close() methods are used.
service | I/O Service object used to manage the socket. |
Definition at line 265 of file tcp_socket.h.
|
virtual |
Destructor.
Definition at line 273 of file tcp_socket.h.
|
virtual |
Receive Asynchronously.
Calls the underlying socket's async_receive() method to read a packet of data from a remote endpoint. Arrival of the data is signalled via a call to the callback function.
data | Buffer to receive incoming message |
length | Length of the data buffer |
offset | Offset into buffer where data is to be put |
endpoint | Source of the communication |
callback | Callback object |
Implements isc::asiolink::IOAsioSocket< C >.
Definition at line 378 of file tcp_socket.h.
References isc::asiolink::TCPEndpoint::getASIOEndpoint(), isc_throw, and isc_throw_assert.
void isc::asiolink::TCPSocket< C >::asyncSend | ( | const void * | data, |
size_t | length, | ||
C & | callback ) |
Send Asynchronously without count.
This variant of the method sends data over the TCP socket without preceding the data with a data count. Eventually, we should migrate the virtual method to not insert the count but there are existing classes using the count. Once this migration is done, the existing virtual method should be replaced by this method.
data | Data to send |
length | Length of data to send |
callback | Callback object. |
BufferTooLarge | on attempt to send a buffer larger than 64kB. |
Definition at line 321 of file tcp_socket.h.
References isc_throw.
|
virtual |
Send Asynchronously.
Calls the underlying socket's async_send() method to send a packet of data asynchronously to the remote endpoint. The callback will be called on completion.
data | Data to send |
length | Length of data to send |
endpoint | Target of the send. (Unused for a TCP socket because that was determined when the connection was opened.) |
callback | Callback object. |
BufferTooLarge | on attempt to send a buffer larger than 64kB. |
Need to copy the data into a temporary buffer and precede it with a two-byte count field.
Ensure it fits into 16 bits
Copy data into a buffer preceded by the count field.
... and send it
Implements isc::asiolink::IOAsioSocket< C >.
Definition at line 344 of file tcp_socket.h.
References isc_throw.
|
virtual |
Cancel I/O On Socket.
Implements isc::asiolink::IOAsioSocket< C >.
Definition at line 480 of file tcp_socket.h.
|
virtual |
Close socket.
Implements isc::asiolink::IOAsioSocket< C >.
Definition at line 490 of file tcp_socket.h.
|
inlinevirtual |
Returns reference to the underlying ASIO socket.
Definition at line 218 of file tcp_socket.h.
|
inlinevirtual |
Return file descriptor of underlying socket.
Implements isc::asiolink::IOAsioSocket< C >.
Definition at line 75 of file tcp_socket.h.
|
inlinevirtual |
Return protocol of socket.
Implements isc::asiolink::IOAsioSocket< C >.
Definition at line 84 of file tcp_socket.h.
|
inlinevirtual |
Is "open()" synchronous?
Indicates that the opening of a TCP socket is asynchronous.
Implements isc::asiolink::IOAsioSocket< C >.
Definition at line 91 of file tcp_socket.h.
|
inline |
Checks if the connection is usable.
The connection is usable if the socket is open and the peer has not closed its connection.
Definition at line 101 of file tcp_socket.h.
|
virtual |
Open Socket.
Opens the TCP socket. This is an asynchronous operation, completion of which will be signalled via a call to the callback function.
endpoint | Endpoint to which the socket will connect. |
callback | Callback object. |
the derived class and the two classes differ on return type.
Implements isc::asiolink::IOAsioSocket< C >.
Definition at line 280 of file tcp_socket.h.
References isc_throw_assert.
|
virtual |
Process received data packet.
See the description of IOAsioSocket::receiveComplete for a complete description of this method.
staging | Pointer to the start of the staging buffer. |
length | Amount of data in the staging buffer. |
cumulative | Amount of data received before the staging buffer is processed. |
offset | Unused. |
expected | unused. |
buff | Output buffer. Data in the staging buffer is be copied to this output buffer in the call. |
Implements isc::asiolink::IOAsioSocket< C >.
Definition at line 417 of file tcp_socket.h.
References isc::util::readUint16().