mirror of
https://git.kernel.org/pub/scm/network/iproute2/iproute2.git
synced 2026-01-28 06:54:12 +00:00
The function rtnl_addproto_a2n() was defined but never used.
Use it to allow for symbolic names, and fix the function signatures
so protocol value is consistently __u8.
Fixes: bdb8d8549ed9 ("ip: Support IP address protocol")
Cc: petrm@nvidia.com
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
48 lines
1.7 KiB
C
48 lines
1.7 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef RT_NAMES_H_
|
|
#define RT_NAMES_H_ 1
|
|
|
|
#include <asm/types.h>
|
|
|
|
const char *rtnl_rtprot_n2a(int id, char *buf, int len);
|
|
const char *rtnl_addrprot_n2a(__u8 id, char *buf, int len);
|
|
const char *rtnl_rtscope_n2a(int id, char *buf, int len);
|
|
const char *rtnl_rttable_n2a(__u32 id, char *buf, int len);
|
|
const char *rtnl_rtrealm_n2a(int id, char *buf, int len);
|
|
const char *rtnl_dsfield_n2a(int id, char *buf, int len);
|
|
const char *rtnl_dsfield_get_name(int id);
|
|
const char *rtnl_group_n2a(int id, char *buf, int len);
|
|
|
|
int rtnl_rtprot_a2n(__u32 *id, const char *arg);
|
|
int rtnl_addrprot_a2n(__u8 *id, const char *arg);
|
|
int rtnl_rtscope_a2n(__u32 *id, const char *arg);
|
|
int rtnl_rttable_a2n(__u32 *id, const char *arg);
|
|
int rtnl_rtrealm_a2n(__u32 *id, const char *arg);
|
|
int rtnl_dsfield_a2n(__u32 *id, const char *arg);
|
|
int rtnl_group_a2n(int *id, const char *arg);
|
|
|
|
const char *inet_proto_n2a(int proto, char *buf, int len);
|
|
int inet_proto_a2n(const char *buf);
|
|
|
|
|
|
const char * ll_type_n2a(int type, char *buf, int len);
|
|
const char *ll_addr_n2a(const unsigned char *addr, int alen,
|
|
int type, char *buf, int blen);
|
|
int ll_addr_a2n(char *lladdr, int len, const char *arg);
|
|
|
|
const char * ll_proto_n2a(unsigned short id, char *buf, int len);
|
|
int ll_proto_a2n(unsigned short *id, const char *buf);
|
|
|
|
const char *ppp_proto_n2a(unsigned short id, char *buf, int len);
|
|
int ppp_proto_a2n(unsigned short *id, const char *buf);
|
|
|
|
const char *nl_proto_n2a(int id, char *buf, int len);
|
|
int nl_proto_a2n(__u32 *id, const char *arg);
|
|
|
|
int protodown_reason_a2n(__u32 *id, const char *arg);
|
|
int protodown_reason_n2a(int id, char *buf, int len);
|
|
|
|
extern int numeric;
|
|
|
|
#endif
|