freebsd-dev/sbin/ipf/libipf/tcpflags.c
Cy Schubert 44bc301921 ipfilter userland: Style(9) requires a space after return
Reported by:    jrtc27
Fixes:          2582ae5740
MFC after:      1 month
2022-01-03 19:37:25 -08:00

45 lines
591 B
C

/* $FreeBSD$ */
/*
* Copyright (C) 2012 by Darren Reed.
*
* See the IPFILTER.LICENCE file for details on licencing.
*
* $Id$
*/
#include "ipf.h"
/*
* ECN is a new addition to TCP - RFC 2481
*/
#ifndef TH_ECN
# define TH_ECN 0x40
#endif
#ifndef TH_CWR
# define TH_CWR 0x80
#endif
extern char flagset[];
extern u_char flags[];
u_char tcpflags(char *flgs)
{
u_char tcpf = 0;
char *s, *t;
for (s = flgs; *s; s++) {
if (*s == 'W')
tcpf |= TH_CWR;
else {
if (!(t = strchr(flagset, *s))) {
return (0);
}
tcpf |= flags[t - flagset];
}
}
return (tcpf);
}