跨平台的 Sockets 库 :C++ Sockets

jopen 11年前

C++ Sockets这一个对BSD风格Sockets的跨平台C++封装。 实现包括 TCP、UDP、ICMP、SCTP 协议。已实现的应用协议包括有 SMTP、HTTP(S)、Ajp (1.3)。具有 SOCKS 客户端实现以及匿名 DNS ,支持 HTTP 的 GET/POST/PUT 以及 WebServer 的框架。

#include  #include "StatusSocket.h"  StatusSocket::StatusSocket(ISocketHandler& h)  :TcpSocket(h)  {  }  void StatusSocket::OnAccept()  {  Send("Local hostname : " + Utility::GetLocalHostname() + "\n");  Send("Local address : " + Utility::GetLocalAddress() + "\n");  Send("Number of sockets in list : " + Utility::l2string(Handler().GetCount()) + "\n");  Send("\n");  }

项目主页:http://www.open-open.com/lib/view/home/1371945696822