#include <Socket.h>
Inheritance diagram for Socket:
Public Member Functions | |
Socket () | |
Socket (int socket, const struct sockaddr_in &) | |
virtual | ~Socket () |
virtual void | connect ()=0 |
virtual bool | isConnected () |
virtual void | listen ()=0 |
virtual bool | isListening () |
virtual void | close () |
virtual void | send (const string &str, int start, int end) |
virtual int | receive (char *inBuff, int inSize) |
virtual int | getSocketDescriptor () |
virtual Socket * | newSocket (int socket, const struct sockaddr_in &f)=0 |
virtual void | dump (ostream &strm) const |
dumps information about this object | |
Protected Attributes | |
int | _socket |
bool | _connected |
bool | _listening |
sockaddr_in | _from |
bool | _addr_set |
|
|
|
|
|
Here is the call graph for this function: ![]() |
|
Reimplemented in UnixSocket. |
|
Implemented in TcpSocket, and UnixSocket. |
|
dumps information about this object Displays the pointer value of this instance
Implements BESObj. Reimplemented in TcpSocket, and UnixSocket. |
|
|
|
|
|
|
|
Implemented in TcpSocket, and UnixSocket. |
|
Implemented in TcpSocket, and UnixSocket. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|