diff --git a/mongoose.h b/mongoose.h index 1362ba2598ad822e4d0cf3bf90aad562e6830576..7121f998821f031e29f0269170a90f2a9ceea47a 100644 --- a/mongoose.h +++ b/mongoose.h @@ -101,7 +101,10 @@ char *mg_md5(char buf[33], ...); int mg_authorize_digest(struct mg_connection *c, FILE *fp); void mg_send_digest_auth_request(struct mg_connection *conn); -// HTTP client interface +// Callback return codes +enum { MG_REPLY_TO_BE_CONTINUED, MG_REPLY_COMPLETED }; + +// HTTP client events enum { MG_CONNECT_SUCCESS, MG_CONNECT_FAILURE, MG_DOWNLOAD_SUCCESS, MG_DOWNLOAD_FAILURE