summaryrefslogtreecommitdiff
path: root/node
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@zerotier.com>2017-01-30 06:54:49 -0800
committerGitHub <noreply@github.com>2017-01-30 06:54:49 -0800
commit2ceb162df0b6d0ce5984aed749680d2379b830bd (patch)
treef5f14041a5c122f869b66277acc7c83b4e3a344d /node
parent915206405cc614a77a62a1173c361547423c4399 (diff)
parent8f2a42d1ad84e5dba590e7f593d8a46cc81389b3 (diff)
downloadinfinitytier-2ceb162df0b6d0ce5984aed749680d2379b830bd.tar.gz
infinitytier-2ceb162df0b6d0ce5984aed749680d2379b830bd.zip
Merge pull request #442 from zielmicha/allow-managed
allow user to specify arbitrary allowed IP networks in allowManaged
Diffstat (limited to 'node')
-rw-r--r--node/Buffer.hpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/node/Buffer.hpp b/node/Buffer.hpp
index 0b171592..1a478894 100644
--- a/node/Buffer.hpp
+++ b/node/Buffer.hpp
@@ -61,11 +61,11 @@ public:
// STL container idioms
typedef unsigned char value_type;
typedef unsigned char * pointer;
- typedef const unsigned char * const_pointer;
- typedef unsigned char & reference;
- typedef const unsigned char & const_reference;
- typedef unsigned char * iterator;
- typedef const unsigned char * const_iterator;
+ typedef const char * const_pointer;
+ typedef char & reference;
+ typedef const char & const_reference;
+ typedef char * iterator;
+ typedef const char * const_iterator;
typedef unsigned int size_type;
typedef int difference_type;
typedef std::reverse_iterator<iterator> reverse_iterator;