tcp.h is missing the header guards, we add
them in this patch.
Signed-off-by: Vlad-Andrei BĂDOIU <vlad_andrei.badoiu@stud.acs.upb.ro>
Reviewed-by: Felipe Huici <felipe.huici@neclab.eu>
* @(#)tcp.h 8.1 (Berkeley) 6/10/93
*/
+#ifndef _TCP_H_
+#define _TCP_H_
+
typedef u_long tcp_seq;
/*
* TCP header.
#define TCP_NODELAY 0x01 /* don't delay send to coalesce packets */
#define TCP_MAXSEG 0x02 /* set maximum segment size */
#define TCP_CORK 0x03 /* don't send out partial frames. Not supported/stub */
+
+#endif