freebsd-dev/sbin/ipf/libipf/tcpflags.c
Cy Schubert 2582ae5740 ipfilter: Adjust userland returns to conform to style(9)
Adjust ipfilter's userland return statements to conform to style(9).

MFC after:	1 month
2022-01-03 18:06:43 -08:00

45 lines
589 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);
}