summaryrefslogtreecommitdiff
path: root/src/libstddjb/netstring_encode.c
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2017-01-25 15:52:18 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2017-01-25 15:52:18 +0000
commit00c9cb1b22cc17c4db573e0e613a5f116ff0092e (patch)
tree53178b2c52c6e97c6193f73378f3c5e5a781a914 /src/libstddjb/netstring_encode.c
parent2746b131aa482ac17c94bc6b82e58dbcc1b752cf (diff)
downloadskalibs-00c9cb1b22cc17c4db573e0e613a5f116ff0092e.tar.xz
More work on the types. This commit builds but has errors.
Rework src/headers entirely: build skalibs/types.h Convert skalibs/fmtscan.h types. Propagate changes until it builds. There are a lot of incompatible pointer issues remaining, those will be fixed with the buffer overhaul.
Diffstat (limited to 'src/libstddjb/netstring_encode.c')
-rw-r--r--src/libstddjb/netstring_encode.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/libstddjb/netstring_encode.c b/src/libstddjb/netstring_encode.c
index c13abd6..6b2d0ea 100644
--- a/src/libstddjb/netstring_encode.c
+++ b/src/libstddjb/netstring_encode.c
@@ -1,13 +1,14 @@
/* ISC license. */
+#include <sys/types.h>
+#include <skalibs/uint64.h>
#include <skalibs/netstring.h>
#include <skalibs/stralloc.h>
-#include <skalibs/uint.h>
-int netstring_encode (stralloc *sa, char const *s, unsigned int len)
+int netstring_encode (stralloc *sa, char const *s, size_t len)
{
- char fmt[UINT_FMT] ;
- unsigned int pos = uint_fmt(fmt, len) ;
+ char fmt[UINT64_FMT] ;
+ size_t pos = uint64_fmt(fmt, len) ;
if (!stralloc_readyplus(sa, pos + len + 2)) return 0 ;
stralloc_catb(sa, fmt, pos) ;
stralloc_catb(sa, ":", 1) ;