Skip to content

Commit 4236405

Browse files
committed
Ready to release
1 parent 292c66e commit 4236405

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3821,7 +3821,7 @@ isn't default port for URL protocol
38213821
Usage example:
38223822

38233823
```c
3824-
unsigned short port1 = mg_url_port("htts://myhost.com") // port1 is now 443 (default https port)
3824+
unsigned short port1 = mg_url_port("https://myhost.com") // port1 is now 443 (default https port)
38253825
unsigned short port2 = mg_url_port("127.0.0.1:567") // port2 is now 567
38263826
```
38273827

@@ -3961,7 +3961,7 @@ Parameters:
39613961
- `0` - Disable logging
39623962
- `1` - Log errors only
39633963
- `2` - Log errors and info messages
3964-
- `3` - Log errors, into and debug messages
3964+
- `3` - Log errors, info and debug messages
39653965
- `4` - Log everything
39663966

39673967
Return value: None

examples/websocket-server/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ static const char *s_web_root = ".";
1010

1111
// This RESTful server implements the following endpoints:
1212
// /websocket - upgrade to Websocket, and implement websocket echo server
13-
// /api/rest - respond with JSON string {"result": 123}
13+
// /rest - respond with JSON string {"result": 123}
1414
// any other URI serves static files from s_web_root
1515
static void fn(struct mg_connection *c, int ev, void *ev_data, void *fn_data) {
1616
if (ev == MG_EV_OPEN) {

mongoose.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#ifndef MONGOOSE_H
2121
#define MONGOOSE_H
2222

23-
#define MG_VERSION "7.8"
23+
#define MG_VERSION "7.9"
2424

2525
#ifdef __cplusplus
2626
extern "C" {

src/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
#define MG_VERSION "7.8"
1+
#define MG_VERSION "7.9"

0 commit comments

Comments
 (0)