diff options
author | mrb0nk500 <b0nk@b0nk.xyz> | 2023-03-07 10:07:04 -0400 |
---|---|---|
committer | mrb0nk500 <b0nk@b0nk.xyz> | 2023-03-07 10:07:04 -0400 |
commit | 8bb7fa64a9d1abed9b563eca9f95d3ac1a8b6cdc (patch) | |
tree | eae893d13e2fb0ead6373488177a0a3c38dfdf5c /context.h | |
parent | 8ec0ae94e0a82915d336737b32268978be638524 (diff) |
T{Tcp,}Socket: Make `send(u8 *, size_t)` return the proper type
Diffstat (limited to 'context.h')
-rw-r--r-- | context.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1126,7 +1126,7 @@ public: virtual short close() = 0; virtual void recv() = 0; virtual short send(u8 *data) = 0; - virtual int send(u8 *data, size_t size) = 0; + virtual short send(u8 *data, size_t size) = 0; int resolve_domain(char *domain); void set_ip_address(u32 addr); @@ -1186,7 +1186,7 @@ public: virtual short close() override; virtual void recv() override; virtual short send(u8 *data) override; - virtual int send(u8 *data, size_t size) override; + virtual short send(u8 *data, size_t size) override; short stat(); void some_stub(); |