httpsrv.h 213 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