diff options
Diffstat (limited to 'server-tools/instance-manager/protocol.h')
-rw-r--r-- | server-tools/instance-manager/protocol.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/server-tools/instance-manager/protocol.h b/server-tools/instance-manager/protocol.h index 520b6d4c92c..b06ae4dfdb2 100644 --- a/server-tools/instance-manager/protocol.h +++ b/server-tools/instance-manager/protocol.h @@ -36,10 +36,11 @@ int send_fields(struct st_net *net, LIST *fields); char *net_store_length(char *pkg, uint length); -int store_to_protocol_packet(Buffer *buf, const char *string, uint *position); +int store_to_protocol_packet(Buffer *buf, const char *string, + size_t *position); -int store_to_protocol_packet(Buffer *buf, const char *string, uint *position, - uint string_len); +int store_to_protocol_packet(Buffer *buf, const char *string, size_t *position, + size_t string_len); int send_eof(struct st_net *net); |