Skip to content

Instantly share code, notes, and snippets.

View xcc2731594's full-sized avatar
🏠
Working from home

xcc2731594

🏠
Working from home
View GitHub Profile
@xcc2731594
xcc2731594 / c_http_post.c
Created August 23, 2022 05:50 — forked from jinfeijie/c_http_post.c
C语言发送http POST请求
#include <arpa/inet.h>
#include <assert.h>
#include <errno.h>
#include <netinet/in.h>
#include <signal.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>