| FBB::SocketBase(3bobcat) | Base class for sockets | FBB::SocketBase(3bobcat) |
FBB::SocketBase - Base class for socket-constructing classes
#include <bobcat/socketbase>
Linking option: -lbobcat
This class is a base class for the FBB::ServerSocket and FBB::ClientSocket classes. Since it is designed as a base class, all its constructors are protected.
FBB
All constructors, members, operators and manipulators, mentioned in this
man-page, are defined in the namespace FBB.
FBB::InetAddress
These constructors throw a std::exception if they could not properly complete.
The copy constructor and copy assignment operator are available. Both offer protected access rights.
All members of FBB::InetAddress are available, as FBB::SocketBase inherits from this class.
The classes FBB::ClientSocket and FBB::ServerSocket were derived from SocketBase. E.g.,
#ifndef INCLUDED_BOBCAT_CLIENTSOCKET_
#define INCLUDED_BOBCAT_CLIENTSOCKET_
#include <string>
#include <bobcat/socketbase>
#include <bobcat/exception>
namespace FBB
{
class ClientSocket: public SocketBase
{
public:
// host may be address or name
ClientSocket(std::string const &host, uint16_t port);
int connect(); // returns fd (socket) to talk to the server
};
} // FBB
#endif
See the clientsocket(3bobcat) man-page for an example showing how to use FBB::ClientSocket.
bobcat/socketbase - defines the class interface
bobcat(7), clientsocket(3bobcat), inetaddress(3bobcat), localsocketbase(3bobcat), serversocket(3bobcat)
None Reported.
Bobcat is an acronym of `Brokken’s Own Base Classes And Templates’.
This is free software, distributed under the terms of the GNU General Public License (GPL).
Frank B. Brokken (f.b.brokken@rug.nl).
| 2005-2023 | libbobcat-dev_6.04.00 |