Home | History | Annotate | Download | only in strace

Lines Matching refs:RTM_BASE

55 	[RTM_DELLINK - RTM_BASE] = decode_ifinfomsg,
56 [RTM_GETLINK - RTM_BASE] = decode_ifinfomsg,
57 [RTM_NEWLINK - RTM_BASE] = decode_ifinfomsg,
58 [RTM_SETLINK - RTM_BASE] = decode_ifinfomsg,
60 [RTM_DELADDR - RTM_BASE] = decode_ifaddrmsg,
61 [RTM_GETADDR - RTM_BASE] = decode_ifaddrmsg,
62 [RTM_GETANYCAST - RTM_BASE] = decode_ifaddrmsg,
63 [RTM_GETMULTICAST - RTM_BASE] = decode_ifaddrmsg,
64 [RTM_NEWADDR - RTM_BASE] = decode_ifaddrmsg,
66 [RTM_DELROUTE - RTM_BASE] = decode_rtmsg,
67 [RTM_GETROUTE - RTM_BASE] = decode_rtmsg,
68 [RTM_NEWROUTE - RTM_BASE] = decode_rtmsg,
70 [RTM_DELRULE - RTM_BASE] = decode_fib_rule_hdr,
71 [RTM_GETRULE - RTM_BASE] = decode_fib_rule_hdr,
72 [RTM_NEWRULE - RTM_BASE] = decode_fib_rule_hdr,
74 [RTM_DELNEIGH - RTM_BASE] = decode_ndmsg,
75 [RTM_GETNEIGH - RTM_BASE] = decode_rtm_getneigh,
76 [RTM_NEWNEIGH - RTM_BASE] = decode_ndmsg,
78 [RTM_GETNEIGHTBL - RTM_BASE] = decode_ndtmsg,
79 [RTM_NEWNEIGHTBL - RTM_BASE] = decode_ndtmsg,
80 [RTM_SETNEIGHTBL - RTM_BASE] = decode_ndtmsg,
82 [RTM_DELQDISC - RTM_BASE] = decode_tcmsg,
83 [RTM_GETQDISC - RTM_BASE] = decode_tcmsg,
84 [RTM_NEWQDISC - RTM_BASE] = decode_tcmsg,
85 [RTM_DELTCLASS - RTM_BASE] = decode_tcmsg,
86 [RTM_GETTCLASS - RTM_BASE] = decode_tcmsg,
87 [RTM_NEWTCLASS - RTM_BASE] = decode_tcmsg,
88 [RTM_DELTFILTER - RTM_BASE] = decode_tcmsg,
89 [RTM_GETTFILTER - RTM_BASE] = decode_tcmsg,
90 [RTM_NEWTFILTER - RTM_BASE] = decode_tcmsg,
92 [RTM_DELACTION - RTM_BASE] = decode_tcamsg,
93 [RTM_GETACTION - RTM_BASE] = decode_tcamsg,
94 [RTM_NEWACTION - RTM_BASE] = decode_tcamsg,
97 [RTM_DELADDRLABEL - RTM_BASE] = decode_ifaddrlblmsg,
98 [RTM_GETADDRLABEL - RTM_BASE] = decode_ifaddrlblmsg,
99 [RTM_NEWADDRLABEL - RTM_BASE] = decode_ifaddrlblmsg,
103 [RTM_GETDCB - RTM_BASE] = decode_dcbmsg,
104 [RTM_SETDCB - RTM_BASE] = decode_dcbmsg,
108 [RTM_DELNETCONF - RTM_BASE] = decode_netconfmsg,
109 [RTM_GETNETCONF - RTM_BASE] = decode_netconfmsg,
110 [RTM_NEWNETCONF - RTM_BASE] = decode_netconfmsg,
114 [RTM_DELMDB - RTM_BASE] = decode_br_port_msg,
115 [RTM_GETMDB - RTM_BASE] = decode_br_port_msg,
116 [RTM_NEWMDB - RTM_BASE] = decode_br_port_msg,
119 [RTM_DELNSID - RTM_BASE] = decode_rtgenmsg,
120 [RTM_GETNSID - RTM_BASE] = decode_rtgenmsg,
121 [RTM_NEWNSID - RTM_BASE] = decode_rtgenmsg
136 const unsigned int index = nlmsghdr->nlmsg_type - RTM_BASE;