|
cmn-clib(CommonLibraryForC)
C言語共通ライブラリ
|
ネットワークライブラリ HTTP関連機能 [詳解]
関数 | |
| CmnNetHttpResponse * | CmnNetHttp_GetRequest (const char *ip, unsigned short port, const char *path) |
| HTTPのGETリクエストを送信する [詳解] | |
| CmnNetHttpResponse * | CmnNetHttp_PostRequest (const char *ip, unsigned short port, const char *path, CmnDataBuffer *requestBody) |
| HTTPのPOSTリクエストを送信する [詳解] | |
ネットワークライブラリ HTTP関連機能
| CmnNetHttpResponse* CmnNetHttp_GetRequest | ( | const char * | ip, |
| unsigned short | port, | ||
| const char * | path | ||
| ) |
HTTPのGETリクエストを送信する
| ip | リモートホストのIPアドレス |
| port | リモートホストのポート |
| path | リクエストパス |
| CmnNetHttpResponse* CmnNetHttp_PostRequest | ( | const char * | ip, |
| unsigned short | port, | ||
| const char * | path, | ||
| CmnDataBuffer * | requestBody | ||
| ) |
HTTPのPOSTリクエストを送信する
| ip | リモートホストのIPアドレス |
| port | リモートホストのポート |
| path | リクエストパス |
| requestBody | リクエストボディに設定するデータ |