diff options
author | Steven Barth <steven@midlink.org> | 2014-02-17 21:08:29 +0100 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2014-02-17 21:08:29 +0100 |
commit | e9a21fdb43c9f94762a724db1a043b376f745ae3 (patch) | |
tree | 46704261aec9ca25023541c0d7275db2ebaf71be /src/odhcpd.h | |
parent | 6d644f0991c51fffcc5312e73b42126b7c6559bf (diff) |
Add support for (managed) prefixes of length 65-96
Diffstat (limited to 'src/odhcpd.h')
-rw-r--r-- | src/odhcpd.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/odhcpd.h b/src/odhcpd.h index 789f696..010cd9e 100644 --- a/src/odhcpd.h +++ b/src/odhcpd.h @@ -188,6 +188,9 @@ time_t odhcpd_time(void); ssize_t odhcpd_unhexlify(uint8_t *dst, size_t len, const char *src); void odhcpd_hexlify(char *dst, const uint8_t *src, size_t len); +int odhcpd_bmemcmp(const void *av, const void *bv, size_t bits); +void odhcpd_bmemcpy(void *av, const void *bv, size_t bits); + int config_parse_interface(void *data, size_t len, const char *iname, bool overwrite); #ifdef WITH_UBUS |