C++ Sockets

C++ Sockets

C++ Sockets 是一個跨平台的 Sockets 庫,實現包括 TCP、UDP、ICMP、SCTP 協定。已實現的套用協定包括有 SMTP、HTTP(S)、Ajp (1.3)。具有 SOCKS 客戶端實現以及匿名 DNS ,支持 HTTP 的 GET/POST/PUT 以及 WebServer 的框架。

基本介紹

  • 中文名:C++ Sockets
  • 類別:跨平台的 Sockets 庫
  • 發布時間:2009年08月30日
  • 協定: TCP、UDP、ICMP、SCTP
示例代碼,版本發布,

示例代碼

#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");
}

版本發布

2009年08月30日,C++ Sockets 2.3.6 發布。

相關詞條

熱門詞條

聯絡我們