NetSocket++  0.1
A library designed to simplify working with UNIX sockets in C++, written in OOP methodology.
 All Classes Namespaces Files Functions Variables
Classes | Functions
NetSocketPP Namespace Reference

A namespace for all library names. More...

Classes

class  ClientSocket
 An implementation of a client socket. Inherits from NetSocket. More...
 
class  HTTPReply
 A class representing HTTP Reply. More...
 
class  HTTPClientSocket
 A class representing HTTP client socket. More...
 
class  NetSocket
 A class, that represents network connection - socket. More...
 
class  NetworkException
 A class representing an exception with network. More...
 
class  ServerFunctionArgs
 A class for storing server function arguments. More...
 
class  ServerSocket
 An implementation of the server socket. More...
 
class  SocketException
 A class representing an exception with socket classes. More...
 

Functions

std::string CStrToString (char *cstr)
 A function, that converts table of chars (a C-style string) into std::string. More...
 

Detailed Description

A namespace for all library names.

Function Documentation

NetSocketPP::CStrToString ( char *  cstr)
inline

A function, that converts table of chars (a C-style string) into std::string.

Parameters
cstrA C-style string to be converted.
Returns
A std::string with the content of the input.