1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
/*
Copyright (C) 2001-2025 Free Software Foundation, Inc.
This file is part of GNU Inetutils.
GNU Inetutils is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or (at
your option) any later version.
GNU Inetutils is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see `http://www.gnu.org/licenses/'. */
/* Written by Marcus Brinkmann. */
#ifndef IFCONFIG_FLAGS_H
# define IFCONFIG_FLAGS_H
# include <sys/types.h>
/* Using these avoid strings with if_flagtoname, the caller can set a
preference on returned flag names. If one of the names in the list
is found for the flag, the search continues to attempt a better
match. */
/* FreeBSD */
# define EXPECT_LINK2 ":LINK2/ALTPHYS:ALTPHYS:"
# define EXPECT_ALTPHYS ":LINK2/ALTPHYS:LINK2:"
/* OSF 4.0g */
# define EXPECT_D2 ":D2/SNAP:SNAP:"
# define EXPECT_SNAP ":D2/SNAP:D2:"
/* Suppress flags that are not changeable by user. */
# ifndef IFF_CANTCHANGE
# define IFF_CANTCHANGE 0
# endif/* IFF_CANTCHANGE */
/* Manually exclude flags that experience tell us be static. */
# define IU_IFF_CANTCHANGE \
(IFF_CANTCHANGE | IFF_LOOPBACK | IFF_RUNNING)
/* Return the name corresponding to the interface flag FLAG.
If FLAG is unknown, return NULL.
AVOID contains a ':' surrounded and separated list of flag names
that should be avoided if alternative names with the same flag value
exists. The first unavoided match is returned, or the first avoided
match if no better is available. */
const char *if_flagtoname (int flag, const char *avoid);
/* Return the flag mask corresponding to flag name NAME. If no flag
with this name is found, return 0. */
int if_nametoflag (const char *name, size_t len, int *prev);
int if_nameztoflag (const char *name, int *prev);
/* Print the flags in FLAGS, using AVOID as in if_flagtoname, and
SEPARATOR between individual flags. Returns the number of
characters printed. */
int print_if_flags (int flags, const char *avoid, char separator);
char *if_list_flags (const char *prefix);
/* Size of the buffer for the if_format_flags call */
# define IF_FORMAT_FLAGS_BUFSIZE 15
void if_format_flags (int flags, char *buf, size_t size);
#endif
|