Explorar o código

Improved docstring for mg_read()

Sergey Lyubka %!s(int64=12) %!d(string=hai) anos
pai
achega
b5b234fab2
Modificáronse 1 ficheiros con 4 adicións e 0 borrados
  1. 4 0
      mongoose.h

+ 4 - 0
mongoose.h

@@ -239,6 +239,10 @@ void mg_send_file(struct mg_connection *conn, const char *path);
 
 
 // Read data from the remote end, return number of bytes read.
+// Return:
+//   0     connection has been closed by peer. No more data could be read.
+//   < 0   read error. No more data could be read from the connection.
+//   > 0   number of bytes read into the buffer.
 int mg_read(struct mg_connection *, void *buf, size_t len);