13 lines
264 B
C
13 lines
264 B
C
#ifndef SOCKS_STATUS_H_
|
|
#define SOCKS_STATUS_H_
|
|
|
|
typedef unsigned int kern_status_t;
|
|
|
|
#define KERN_OK (0)
|
|
#define KERN_UNIMPLEMENTED (1)
|
|
#define KERN_NAME_EXISTS (2)
|
|
#define KERN_INVALID_ARGUMENT (3)
|
|
#define KERN_UNSUPPORTED (4)
|
|
|
|
#endif
|