141edb306SCy Schubert
241edb306SCy Schubert /*
341edb306SCy Schubert * Copyright (C) 2012 by Darren Reed.
441edb306SCy Schubert *
541edb306SCy Schubert * See the IPFILTER.LICENCE file for details on licencing.
641edb306SCy Schubert *
741edb306SCy Schubert * $Id$
841edb306SCy Schubert */
941edb306SCy Schubert #include "ipf.h"
1041edb306SCy Schubert
1141edb306SCy Schubert
1241edb306SCy Schubert #ifdef USE_INET6
1341edb306SCy Schubert
14*efeb8bffSCy Schubert void
optprintv6(u_short * sec,u_long optmsk,u_long optbits)15*efeb8bffSCy Schubert optprintv6(u_short *sec, u_long optmsk, u_long optbits)
1641edb306SCy Schubert {
1741edb306SCy Schubert u_short secmsk = sec[0], secbits = sec[1];
1841edb306SCy Schubert struct ipopt_names *io;
1941edb306SCy Schubert char *s;
2041edb306SCy Schubert
2141edb306SCy Schubert s = " v6hdr ";
2241edb306SCy Schubert for (io = v6ionames; io->on_name; io++)
2341edb306SCy Schubert if ((io->on_bit & optmsk) &&
2441edb306SCy Schubert ((io->on_bit & optmsk) == (io->on_bit & optbits))) {
2541edb306SCy Schubert printf("%s%s", s, io->on_name);
2641edb306SCy Schubert s = ",";
2741edb306SCy Schubert }
2841edb306SCy Schubert
2941edb306SCy Schubert if ((optmsk && (optmsk != optbits)) ||
3041edb306SCy Schubert (secmsk && (secmsk != secbits))) {
3141edb306SCy Schubert s = " ";
3241edb306SCy Schubert printf(" not v6hdrs");
3341edb306SCy Schubert if (optmsk != optbits) {
3441edb306SCy Schubert for (io = v6ionames; io->on_name; io++)
3541edb306SCy Schubert if ((io->on_bit & optmsk) &&
3641edb306SCy Schubert ((io->on_bit & optmsk) !=
3741edb306SCy Schubert (io->on_bit & optbits))) {
3841edb306SCy Schubert printf("%s%s", s, io->on_name);
3941edb306SCy Schubert s = ",";
4041edb306SCy Schubert }
4141edb306SCy Schubert }
4241edb306SCy Schubert
4341edb306SCy Schubert }
4441edb306SCy Schubert }
4541edb306SCy Schubert #endif
46