12 lines
147 B
C
12 lines
147 B
C
#ifndef SOCKS_FLAGS_H_
|
|
#define SOCKS_FLAGS_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef enum {
|
|
S_NORMAL = 0x00u,
|
|
S_NOBLOCK = 0x01u,
|
|
} socks_flags_t;
|
|
|
|
#endif
|