Lines Matching defs:Link

47 typedef struct Link {  struct
48 Manager *manager;
73 IPv6LinkLocalAddressGenMode ipv6ll_address_gen_mode; argument
89 LinkState state; argument
90 LinkOperationalState operstate; argument
91 LinkCarrierState carrier_state; argument
92 LinkAddressState address_state; argument
93 LinkAddressState ipv4_address_state; argument
94 LinkAddressState ipv6_address_state; argument
95 LinkOnlineState online_state; argument
97 unsigned static_address_messages;
98 unsigned static_address_label_messages;
99 unsigned static_bridge_fdb_messages;
100 unsigned static_bridge_mdb_messages;
101 unsigned static_ipv6_proxy_ndp_messages;
102 unsigned static_neighbor_messages;
103 unsigned static_nexthop_messages;
104 unsigned static_route_messages;
105 unsigned static_routing_policy_rule_messages;
106 unsigned tc_messages;
107 unsigned sr_iov_messages;
108 unsigned set_link_messages;
109 unsigned set_flags_messages;
110 unsigned create_stacked_netdev_messages;
112 Set *addresses;
113 Set *neighbors;
114 Set *routes;
115 Set *nexthops;
116 Set *qdiscs;
117 Set *tclasses;
119 sd_dhcp_client *dhcp_client;
120 sd_dhcp_lease *dhcp_lease;
121 char *lease_file;
122 unsigned dhcp4_messages;
123 bool dhcp4_route_failed:1;
124 bool dhcp4_route_retrying:1;
125 bool dhcp4_configured:1;
126 char *dhcp4_6rd_tunnel_name;
128 sd_ipv4ll *ipv4ll;
129 bool ipv4ll_address_configured:1;
131 bool static_addresses_configured:1;
132 bool static_address_labels_configured:1;
133 bool static_bridge_fdb_configured:1;
134 bool static_bridge_mdb_configured:1;
135 bool static_ipv6_proxy_ndp_configured:1;
136 bool static_neighbors_configured:1;
137 bool static_nexthops_configured:1;
138 bool static_routes_configured:1;
139 bool static_routing_policy_rules_configured:1;
140 bool tc_configured:1;
141 bool sr_iov_configured:1;
142 bool activated:1;
143 bool master_set:1;
144 bool stacked_netdevs_created:1;
146 sd_dhcp_server *dhcp_server;
148 sd_ndisc *ndisc;
149 Set *ndisc_rdnss;
150 Set *ndisc_dnssl;
151 unsigned ndisc_messages;
152 bool ndisc_configured:1;
154 sd_radv *radv;
156 sd_dhcp6_client *dhcp6_client;
157 sd_dhcp6_lease *dhcp6_lease;
158 unsigned dhcp6_messages;
159 bool dhcp6_configured;
161 Set *dhcp_pd_prefixes;
162 unsigned dhcp_pd_messages;
163 bool dhcp_pd_configured;
166 sd_lldp_rx *lldp_rx;
167 char *lldp_file;
170 sd_lldp_tx *lldp_tx;
194 } Link; argument