diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-13 20:38:17 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-13 20:38:17 +0100 |
commit | 0ae58753830ebc463683ab59ae701a0dedd17c63 (patch) | |
tree | 979a66a61744e2a19445cdd828223877843e70f7 /FICS/network.h | |
parent | b5505b00c30850fbadb677240cf452de4bdc21a0 (diff) |
Added alignment
Diffstat (limited to 'FICS/network.h')
-rw-r--r-- | FICS/network.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/FICS/network.h b/FICS/network.h index 4fdd1c9..328ee7d 100644 --- a/FICS/network.h +++ b/FICS/network.h @@ -25,24 +25,24 @@ #ifndef _NETWORK_H #define _NETWORK_H -#include "command.h" /* For MAX_STRING_LENGTH */ +#include "command.h" /* For MAX_STRING_LENGTH */ -#define NET_NETERROR 0 -#define NET_NEW 1 -#define NET_DISCONNECT 2 -#define NET_READLINE 3 -#define NET_TIMEOUT 4 -#define NET_NOTCOMPLETE 5 +#define NET_NETERROR 0 +#define NET_NEW 1 +#define NET_DISCONNECT 2 +#define NET_READLINE 3 +#define NET_TIMEOUT 4 +#define NET_NOTCOMPLETE 5 -#define LINE_WIDTH 80 +#define LINE_WIDTH 80 #ifndef O_NONBLOCK #define O_NONBLOCK 00004 #endif -#define NETSTAT_EMPTY 0 -#define NETSTAT_CONNECTED 1 -#define NETSTAT_IDENT 2 +#define NETSTAT_EMPTY 0 +#define NETSTAT_CONNECTED 1 +#define NETSTAT_IDENT 2 typedef struct _connection { int fd; |