mirror of
https://github.com/cesanta/mongoose.git
synced 2024-11-24 02:59:01 +08:00
40 lines
829 B
C
40 lines
829 B
C
#include "mongoose.h"
|
|
|
|
int mkdir(const char *path, mode_t mode) {
|
|
(void) path, (void) mode;
|
|
return -1;
|
|
}
|
|
|
|
void mg_connect_resolved(struct mg_connection *c) {
|
|
(void) c;
|
|
}
|
|
|
|
bool mg_open_listener(struct mg_connection *c, const char *url) {
|
|
(void) c, (void) url;
|
|
return false;
|
|
}
|
|
|
|
void mg_mgr_poll(struct mg_mgr *mgr, int ms) {
|
|
(void) mgr, (void) ms;
|
|
}
|
|
|
|
bool mg_send(struct mg_connection *c, const void *buf, size_t len) {
|
|
(void) c, (void) buf, (void) len;
|
|
return 0;
|
|
}
|
|
|
|
bool mg_mgr_wakeup(struct mg_connection *c, const void *buf, size_t len) {
|
|
(void) c, (void) buf, (void) len;
|
|
return 0;
|
|
}
|
|
|
|
struct mg_connection *mg_mkpipe(struct mg_mgr *mgr, mg_event_handler_t fn,
|
|
void *fn_data) {
|
|
(void) mgr, (void) fn, (void) fn_data;
|
|
return NULL;
|
|
}
|
|
|
|
void _fini(void);
|
|
void _fini(void) {
|
|
}
|