Network/* structure changed

This commit is contained in:
2022-08-13 00:53:30 +06:00
parent d96bebaf45
commit 4e162bd474
11 changed files with 220 additions and 108 deletions

View File

@@ -11,6 +11,7 @@ extern "C" {
#include <locale.h>
#include <time.h>
#include <setjmp.h>
#include <unistd.h>
#define dbg(N) printf("\e[95m%d\n",N)

View File

@@ -24,9 +24,9 @@ typedef enum __attribute__((__packed__)) my_type {
UniversalType,
AutoarrInt8Ptr, AutoarrUInt8Ptr, AutoarrInt16Ptr, AutoarrUInt16Ptr,
AutoarrInt32Ptr, AutoarrUInt32Ptr, AutoarrInt64Ptr, AutoarrUInt64Ptr,
AutoarrUnitypePtr, AutoarrKVPairPtr
AutoarrUnitypePtr, AutoarrKVPairPtr, knSocketPtr
} my_type;
#define my_type_last AutoarrKVPairPtr
#define my_type_last knSocketPtr
const char* my_type_name(my_type t);