Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/soccr
diff options
context:
space:
mode:
authorKir Kolyshkin <kir@openvz.org>2017-03-24 01:02:11 +0300
committerAndrei Vagin <avagin@virtuozzo.com>2017-04-11 08:57:03 +0300
commitba78d155578d5a8d78f4e0de5aa999c6cccc6dcf (patch)
tree546e1daf503676bb0bc6d7ede80d9193a5ea15d0 /soccr
parentf4e7b6e78f3051b5519d8fc384cabf1621add308 (diff)
Spring whitespace cleanup
Replace 8-spaces with a tab in code. Signed-off-by: Kir Kolyshkin <kir@openvz.org> Signed-off-by: Andrei Vagin <avagin@virtuozzo.com>
Diffstat (limited to 'soccr')
-rw-r--r--soccr/soccr.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/soccr/soccr.c b/soccr/soccr.c
index 7d093b1aa..70f99357a 100644
--- a/soccr/soccr.c
+++ b/soccr/soccr.c
@@ -16,17 +16,17 @@
#endif
enum {
- TCPF_ESTABLISHED = (1 << 1),
- TCPF_SYN_SENT = (1 << 2),
- TCPF_SYN_RECV = (1 << 3),
- TCPF_FIN_WAIT1 = (1 << 4),
- TCPF_FIN_WAIT2 = (1 << 5),
- TCPF_TIME_WAIT = (1 << 6),
- TCPF_CLOSE = (1 << 7),
- TCPF_CLOSE_WAIT = (1 << 8),
- TCPF_LAST_ACK = (1 << 9),
- TCPF_LISTEN = (1 << 10),
- TCPF_CLOSING = (1 << 11),
+ TCPF_ESTABLISHED = (1 << 1),
+ TCPF_SYN_SENT = (1 << 2),
+ TCPF_SYN_RECV = (1 << 3),
+ TCPF_FIN_WAIT1 = (1 << 4),
+ TCPF_FIN_WAIT2 = (1 << 5),
+ TCPF_TIME_WAIT = (1 << 6),
+ TCPF_CLOSE = (1 << 7),
+ TCPF_CLOSE_WAIT = (1 << 8),
+ TCPF_LAST_ACK = (1 << 9),
+ TCPF_LISTEN = (1 << 10),
+ TCPF_CLOSING = (1 << 11),
};
/*
@@ -561,9 +561,9 @@ static int send_fin(struct libsoccr_sk *sk, struct libsoccr_sk_data *data,
libnet_type = LIBNET_RAW4;
l = libnet_init(
- libnet_type, /* injection type */
- NULL, /* network interface */
- errbuf); /* errbuf */
+ libnet_type, /* injection type */
+ NULL, /* network interface */
+ errbuf); /* errbuf */
if (l == NULL)
return -1;