httpsrv.h 211 B

12345678910
  1. #ifndef BFG_HTTPSRV_H
  2. #define BFG_HTTPSRV_H
  3. #include <microhttpd.h>
  4. extern void httpsrv_start(unsigned short port);
  5. extern void httpsrv_prepare_resp(struct MHD_Response *);
  6. extern void httpsrv_stop();
  7. #endif