Rudiments
|
Inherited by inetclientsocket [private]
, and inetserversocket [private]
.
Public Member Functions | |
inetsocketutil () | |
inetsocketutil (const inetsocketutil &i) | |
inetsocketutil & | operator= (const inetsocketutil &i) |
virtual | ~inetsocketutil () |
void | initialize (const char *address, uint16_t port) |
The inetsocketutil class is just a base class for other classes that use inet sockets. It is unlikely to need to be used directly.
inetsocketutil::inetsocketutil | ( | ) |
Creates an instance of the inetsocketutil class.
inetsocketutil::inetsocketutil | ( | const inetsocketutil & | i | ) |
Creates an instance of the inetsocketutil class that is a copy of "i".
virtual inetsocketutil::~inetsocketutil | ( | ) | [virtual] |
Deletes this instance of the inetsocketutil class.
void inetsocketutil::initialize | ( | const char * | address, |
uint16_t | port | ||
) |
Initializes the class to use "address" and "port". This is not directly useful within this class but child classes may use these values to decide where to connect to or what to listen on.
Reimplemented in inetserversocket.
inetsocketutil& inetsocketutil::operator= | ( | const inetsocketutil & | i | ) |
Makes this instance of the inetsocketutil class identical to "i".