mirror of
https://github.com/yarrick/iodine.git
synced 2024-12-22 21:33:33 +02:00
Return number of bytes written
This commit is contained in:
parent
77ec951b01
commit
d2df0f69c1
2 changed files with 3 additions and 3 deletions
|
@ -7,7 +7,7 @@ iodine - IP over DNS is now easy
|
|||
|
||||
CHANGES:
|
||||
|
||||
xxxx-xx-xx: 0.4
|
||||
xxxx-xx-xx: 0.3.2
|
||||
- New encoding, 25% more peak upstream throughput
|
||||
- New -l option to set local ip to listen to on server
|
||||
|
||||
|
|
4
read.c
4
read.c
|
@ -86,7 +86,7 @@ int
|
|||
readdata(char *packet, char **src, char *dst, size_t len)
|
||||
{
|
||||
if (len < 0)
|
||||
return len;
|
||||
return 0;
|
||||
|
||||
memcpy(dst, *src, len);
|
||||
|
||||
|
@ -138,7 +138,7 @@ int
|
|||
putdata(char **dst, char *data, size_t len)
|
||||
{
|
||||
if (len < 0)
|
||||
return len;
|
||||
return 0;
|
||||
|
||||
memcpy(*dst, data, len);
|
||||
|
||||
|
|
Loading…
Reference in a new issue