http.h (269B)
1 #ifndef PLONG_HTTP_H 2 #define PLONG_HTTP_H 3 4 #include "minitls.h" 5 #include "buf.h" 6 7 int http_post(const char *server, 8 const char *port, 9 const char *path, 10 const struct buf *b, 11 struct buf *reply, 12 int *af, 13 struct tls *ctx); 14 15 #endif