Implemented a status return type

This commit is contained in:
2022-12-28 23:03:49 +00:00
parent d0091a4df7
commit fac31086f5

9
include/socks/status.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef SOCKS_STATUS_H_
#define SOCKS_STATUS_H_
typedef unsigned int kern_status_t;
#define KERN_OK (0)
#define KERN_ERR_UNIMPLEMENTED (1)
#endif