Update tutorial-10-user_defined_protocol.md

This commit is contained in:
xiehan
2021-04-01 01:33:39 +08:00
committed by GitHub
parent 432564de8f
commit 4cb2e58785

View File

@@ -31,7 +31,7 @@ private:
/* You have to implement one of the 'append' functions, and the first one
* with arguement 'size_t *size' is recommmended. */
virtual int append(const void *buf, size_t *size)
virtual int append(const void *buf, size_t *size);
virtual int append(const void *buf, size_t size);
...