ASockLib
1.0.0
シンプルで簡単なクロスプラットフォーム C++ ソケット サーバー/クライアント フレームワークは、TCP 固定長ヘッダーと可変長ボディの処理に特に便利です。もちろんudpやドメインソケットにも対応しています。
依存関係: CumBuffer。
// See the sample folder for all examples.
// this is an inheritance usage.
// you can find composition usage and udp, domain socket example too.
// msg_defines.h
// user specific data
typedef struct _ST_MY_CHAT_HEADER_
{
char msg_len[ 10 + 1 ];
} ST_MY_HEADER ;
# define CHAT_HEADER_SIZE sizeof (ST_MY_HEADER)