summaryrefslogtreecommitdiff
path: root/src/decoder.hpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2012-03-13 16:00:57 +0100
committerMartin Sustrik <sustrik@250bpm.com>2012-03-13 16:00:57 +0100
commitd6d396790754dc03bfbde4d957c31e2170151bfd (patch)
tree3919784bf39b2e4c6bfc90960386fda3e5d79483 /src/decoder.hpp
parentb871611cc36eaaf740a5c8f476cf53fe40299eb3 (diff)
Type of XS_MAXMSGSIZE changed to uint64_t
Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'src/decoder.hpp')
-rw-r--r--src/decoder.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/decoder.hpp b/src/decoder.hpp
index 9131861..c0ca85a 100644
--- a/src/decoder.hpp
+++ b/src/decoder.hpp
@@ -193,7 +193,7 @@ namespace xs
{
public:
- decoder_t (size_t bufsize_, int64_t maxmsgsize_);
+ decoder_t (size_t bufsize_, uint64_t maxmsgsize_);
~decoder_t ();
void set_session (xs::session_base_t *session_);
@@ -209,7 +209,7 @@ namespace xs
unsigned char tmpbuf [8];
msg_t in_progress;
- int64_t maxmsgsize;
+ uint64_t maxmsgsize;
decoder_t (const decoder_t&);
void operator = (const decoder_t&);