added const in mg_get_request_info()

This commit is contained in:
Sergey Lyubka 2012-08-18 16:47:25 +01:00
parent d70c18d692
commit 8b491d75b5
2 changed files with 3 additions and 2 deletions

View File

@ -592,7 +592,8 @@ const char *mg_version(void) {
return MONGOOSE_VERSION;
}
const struct mg_request_info *mg_get_request_info(struct mg_connection *conn) {
const struct mg_request_info *
mg_get_request_info(const struct mg_connection *conn) {
return &conn->request_info;
}

View File

@ -153,7 +153,7 @@ int mg_modify_passwords_file(const char *passwords_file_name,
// Return mg_request_info structure associated with the request.
// Always succeeds.
const struct mg_request_info *mg_get_request_info(struct mg_connection *);
const struct mg_request_info *mg_get_request_info(const struct mg_connection *);
// Send data to the client.