Initial version of slipstream DNS tunnel

This commit is contained in:
Jop Zitman 2024-12-10 14:40:14 +08:00
commit 29f3c50237
18 changed files with 1586 additions and 0 deletions

View file

@ -0,0 +1,9 @@
#ifndef LUA_RESTY_BASE_ENCODING_BASE32_H
#define LUA_RESTY_BASE_ENCODING_BASE32_H
#include <stdint.h>
size_t b32_encode(char *dest, const char *src, size_t len, uint32_t no_padding, uint32_t hex);
size_t b32_decode(char *dest, const char *src, size_t len, uint32_t hex);
#endif // LUA_RESTY_BASE_ENCODING_BASE32_H