]> git.ipfire.org Git - thirdparty/lldpd.git/blob - src/lldpd-structs.h
Merge pull request #274 from vincentbernat/feature/keep-some-ports
[thirdparty/lldpd.git] / src / lldpd-structs.h
1 /* -*- mode: c; c-file-style: "openbsd" -*- */
2 /*
3 * Copyright (c) 2008 Vincent Bernat <bernat@luffy.cx>
4 *
5 * Permission to use, copy, modify, and/or distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 */
17
18 #ifndef _LLDPD_STRUCTS_H
19 #define _LLDPD_STRUCTS_H
20
21 #if HAVE_CONFIG_H
22 # include <config.h>
23 #endif
24
25 #include <sys/types.h>
26 #include <sys/socket.h>
27
28 /* This is not very convenient, but we need net/if.h for IFNAMSIZ and others but
29 * we may also need linux/if.h in some modules. And they conflict each others.
30 */
31 #ifdef HOST_OS_LINUX
32 # include <linux/if.h>
33 #else
34 # include <net/if.h>
35 #endif
36
37 #include <netinet/in.h>
38 #include <netinet/if_ether.h>
39 #include <sys/queue.h>
40
41 #include "compat/compat.h"
42 #include "marshal.h"
43 #include "lldp-const.h"
44
45 #ifdef ENABLE_DOT1
46 struct lldpd_ppvid {
47 TAILQ_ENTRY(lldpd_ppvid) p_entries;
48 u_int8_t p_cap_status;
49 u_int16_t p_ppvid;
50 };
51 MARSHAL_BEGIN(lldpd_ppvid)
52 MARSHAL_TQE(lldpd_ppvid, p_entries)
53 MARSHAL_END(lldpd_ppvid);
54
55 struct lldpd_vlan {
56 TAILQ_ENTRY(lldpd_vlan) v_entries;
57 char *v_name;
58 u_int16_t v_vid;
59 };
60 MARSHAL_BEGIN(lldpd_vlan)
61 MARSHAL_TQE(lldpd_vlan, v_entries)
62 MARSHAL_STR(lldpd_vlan, v_name)
63 MARSHAL_END(lldpd_vlan);
64
65 struct lldpd_pi {
66 TAILQ_ENTRY(lldpd_pi) p_entries;
67 char *p_pi;
68 int p_pi_len;
69 };
70 MARSHAL_BEGIN(lldpd_pi)
71 MARSHAL_TQE(lldpd_pi, p_entries)
72 MARSHAL_FSTR(lldpd_pi, p_pi, p_pi_len)
73 MARSHAL_END(lldpd_pi);
74 #endif
75
76 #ifdef ENABLE_LLDPMED
77 struct lldpd_med_policy {
78 u_int8_t index; /* Not used. */
79 u_int8_t type;
80 u_int8_t unknown;
81 u_int8_t tagged;
82 u_int16_t vid;
83 u_int8_t priority;
84 u_int8_t dscp;
85 };
86 MARSHAL(lldpd_med_policy);
87
88 struct lldpd_med_loc {
89 u_int8_t index; /* Not used. */
90 u_int8_t format;
91 char *data;
92 int data_len;
93 };
94 MARSHAL_BEGIN(lldpd_med_loc)
95 MARSHAL_FSTR(lldpd_med_loc, data, data_len)
96 MARSHAL_END(lldpd_med_loc);
97
98 struct lldpd_med_power {
99 u_int8_t devicetype; /* PD or PSE */
100 u_int8_t source;
101 u_int8_t priority;
102 u_int16_t val;
103 };
104 MARSHAL(lldpd_med_power);
105 #endif
106
107 #ifdef ENABLE_DOT3
108 struct lldpd_dot3_macphy {
109 u_int8_t autoneg_support;
110 u_int8_t autoneg_enabled;
111 u_int16_t autoneg_advertised;
112 u_int16_t mau_type;
113 };
114
115 struct lldpd_dot3_power {
116 u_int8_t devicetype;
117 u_int8_t supported;
118 u_int8_t enabled;
119 u_int8_t paircontrol;
120 u_int8_t pairs;
121 u_int8_t class;
122 u_int8_t powertype; /* If set to LLDP_DOT3_POWER_8023AT_OFF,
123 following fields have no meaning */
124 u_int8_t source;
125 u_int8_t priority;
126 u_int16_t requested;
127 u_int16_t allocated;
128 };
129 MARSHAL(lldpd_dot3_power);
130 #endif
131
132 enum {
133 LLDPD_AF_UNSPEC = 0,
134 LLDPD_AF_IPV4,
135 LLDPD_AF_IPV6,
136 LLDPD_AF_LAST
137 };
138
139 inline static int
140 lldpd_af(int af)
141 {
142 switch (af) {
143 case LLDPD_AF_IPV4: return AF_INET;
144 case LLDPD_AF_IPV6: return AF_INET6;
145 case LLDPD_AF_LAST: return AF_MAX;
146 default: return AF_UNSPEC;
147 }
148 }
149
150 #define LLDPD_MGMT_MAXADDRSIZE 16 /* sizeof(struct in6_addr) */
151 union lldpd_address {
152 struct in_addr inet;
153 struct in6_addr inet6;
154 u_int8_t octets[LLDPD_MGMT_MAXADDRSIZE]; /* network byte order! */
155 };
156 struct lldpd_mgmt {
157 TAILQ_ENTRY(lldpd_mgmt) m_entries;
158 int m_family;
159 union lldpd_address m_addr;
160 size_t m_addrsize;
161 u_int32_t m_iface;
162 };
163 MARSHAL_BEGIN(lldpd_mgmt)
164 MARSHAL_TQE(lldpd_mgmt, m_entries)
165 MARSHAL_END(lldpd_mgmt);
166
167 struct lldpd_chassis {
168 TAILQ_ENTRY(lldpd_chassis) c_entries;
169 u_int16_t c_refcount; /* Reference count by ports */
170 u_int16_t c_index; /* Monotonic index */
171 u_int8_t c_protocol; /* Protocol used to get this chassis */
172 u_int8_t c_id_subtype;
173 char *c_id;
174 int c_id_len;
175 char *c_name;
176 char *c_descr;
177
178 u_int16_t c_cap_available;
179 u_int16_t c_cap_enabled;
180
181 TAILQ_HEAD(, lldpd_mgmt) c_mgmt;
182
183 #ifdef ENABLE_LLDPMED
184 u_int16_t c_med_cap_available;
185 u_int8_t c_med_type;
186 char *c_med_hw;
187 char *c_med_fw;
188 char *c_med_sw;
189 char *c_med_sn;
190 char *c_med_manuf;
191 char *c_med_model;
192 char *c_med_asset;
193 #endif
194
195 };
196 /* WARNING: any change to this structure should also be reflected into
197 `lldpd_copy_chassis()` which is not using marshaling. */
198 MARSHAL_BEGIN(lldpd_chassis)
199 MARSHAL_IGNORE(lldpd_chassis, c_entries.tqe_next)
200 MARSHAL_IGNORE(lldpd_chassis, c_entries.tqe_prev)
201 MARSHAL_FSTR(lldpd_chassis, c_id, c_id_len)
202 MARSHAL_STR(lldpd_chassis, c_name)
203 MARSHAL_STR(lldpd_chassis, c_descr)
204 MARSHAL_SUBTQ(lldpd_chassis, lldpd_mgmt, c_mgmt)
205 #ifdef ENABLE_LLDPMED
206 MARSHAL_STR(lldpd_chassis, c_med_hw)
207 MARSHAL_STR(lldpd_chassis, c_med_fw)
208 MARSHAL_STR(lldpd_chassis, c_med_sw)
209 MARSHAL_STR(lldpd_chassis, c_med_sn)
210 MARSHAL_STR(lldpd_chassis, c_med_manuf)
211 MARSHAL_STR(lldpd_chassis, c_med_model)
212 MARSHAL_STR(lldpd_chassis, c_med_asset)
213 #endif
214 MARSHAL_END(lldpd_chassis);
215
216 #ifdef ENABLE_CUSTOM
217
218 #define CUSTOM_TLV_ADD 1
219 #define CUSTOM_TLV_REPLACE 2
220 #define CUSTOM_TLV_REMOVE 3
221
222 /* Custom TLV struct as defined on page 35 of IEEE 802.1AB-2005 */
223 struct lldpd_custom {
224 TAILQ_ENTRY(lldpd_custom) next; /* Pointer to next custom TLV */
225
226 /* Organizationally Unique Identifier */
227 u_int8_t oui[LLDP_TLV_ORG_OUI_LEN];
228 /* Organizationally Defined Subtype */
229 u_int8_t subtype;
230 /* Organizationally Defined Information String */
231 u_int8_t *oui_info;
232 /* Organizationally Defined Information String length */
233 int oui_info_len;
234 };
235 MARSHAL_BEGIN(lldpd_custom)
236 MARSHAL_TQE(lldpd_custom, next)
237 MARSHAL_FSTR(lldpd_custom, oui_info, oui_info_len)
238 MARSHAL_END(lldpd_custom);
239 #endif
240
241 struct lldpd_port {
242 TAILQ_ENTRY(lldpd_port) p_entries;
243 struct lldpd_chassis *p_chassis; /* Attached chassis */
244 time_t p_lastchange; /* Time of last change of values */
245 time_t p_lastupdate; /* Time of last update received */
246 time_t p_lastremove; /* Time of last removal of a remote port. Used for local ports only
247 * Used for deciding lldpStatsRemTablesLastChangeTime */
248 struct lldpd_frame *p_lastframe; /* Frame received during last update */
249 u_int8_t p_protocol; /* Protocol used to get this port */
250 u_int8_t p_hidden_in:1; /* Considered as hidden for reception */
251 u_int8_t p_hidden_out:2; /* Considered as hidden for emission */
252 u_int8_t p_disable_rx:3; /* Should RX be disabled for this port? */
253 u_int8_t p_disable_tx:4; /* Should TX be disabled for this port? */
254 /* Important: all fields that should be ignored to check if a port has
255 * been changed should be before this mark. */
256 #define LLDPD_PORT_START_MARKER (offsetof(struct lldpd_port, _p_hardware_flags))
257 int _p_hardware_flags; /* This is a copy of hardware flags. Do not use it! */
258 u_int8_t p_id_subtype;
259 char *p_id;
260 int p_id_len;
261 char *p_descr;
262 int p_descr_force; /* Description has been forced by user */
263 u_int16_t p_mfs;
264 u_int16_t p_ttl; /* TTL for remote port */
265
266 #ifdef ENABLE_DOT3
267 /* Dot3 stuff */
268 u_int32_t p_aggregid;
269 struct lldpd_dot3_macphy p_macphy;
270 struct lldpd_dot3_power p_power;
271 #endif
272
273 #ifdef ENABLE_LLDPMED
274 u_int16_t p_med_cap_enabled;
275 struct lldpd_med_policy p_med_policy[LLDP_MED_APPTYPE_LAST];
276 struct lldpd_med_loc p_med_location[LLDP_MED_LOCFORMAT_LAST];
277 struct lldpd_med_power p_med_power;
278 #endif
279
280 #ifdef ENABLE_DOT1
281 u_int16_t p_pvid;
282 TAILQ_HEAD(, lldpd_vlan) p_vlans;
283 TAILQ_HEAD(, lldpd_ppvid) p_ppvids;
284 TAILQ_HEAD(, lldpd_pi) p_pids;
285 #endif
286 #ifdef ENABLE_CUSTOM
287 TAILQ_HEAD(, lldpd_custom) p_custom_list;
288 #endif
289 };
290 MARSHAL_BEGIN(lldpd_port)
291 MARSHAL_TQE(lldpd_port, p_entries)
292 MARSHAL_POINTER(lldpd_port, lldpd_chassis, p_chassis)
293 MARSHAL_IGNORE(lldpd_port, p_lastframe)
294 MARSHAL_FSTR(lldpd_port, p_id, p_id_len)
295 MARSHAL_STR(lldpd_port, p_descr)
296 #ifdef ENABLE_LLDPMED
297 MARSHAL_SUBSTRUCT(lldpd_port, lldpd_med_loc, p_med_location[0])
298 MARSHAL_SUBSTRUCT(lldpd_port, lldpd_med_loc, p_med_location[1])
299 MARSHAL_SUBSTRUCT(lldpd_port, lldpd_med_loc, p_med_location[2])
300 #endif
301 #ifdef ENABLE_DOT1
302 MARSHAL_SUBTQ(lldpd_port, lldpd_vlan, p_vlans)
303 MARSHAL_SUBTQ(lldpd_port, lldpd_ppvid, p_ppvids)
304 MARSHAL_SUBTQ(lldpd_port, lldpd_pi, p_pids)
305 #endif
306 #ifdef ENABLE_CUSTOM
307 MARSHAL_SUBTQ(lldpd_port, lldpd_custom, p_custom_list)
308 #endif
309 MARSHAL_END(lldpd_port);
310
311 /* Used to modify some port related settings */
312 #define LLDPD_RXTX_UNCHANGED 0
313 #define LLDPD_RXTX_TXONLY 1
314 #define LLDPD_RXTX_RXONLY 2
315 #define LLDPD_RXTX_DISABLED 3
316 #define LLDPD_RXTX_BOTH 4
317 #define LLDPD_RXTX_FROM_PORT(p) (((p)->p_disable_rx && (p)->p_disable_tx)?LLDPD_RXTX_DISABLED: \
318 ((p)->p_disable_rx && !(p)->p_disable_tx)?LLDPD_RXTX_TXONLY: \
319 (!(p)->p_disable_rx && (p)->p_disable_tx)?LLDPD_RXTX_RXONLY: \
320 LLDPD_RXTX_BOTH)
321 #define LLDPD_RXTX_RXENABLED(v) ((v) == LLDPD_RXTX_RXONLY || (v) == LLDPD_RXTX_BOTH)
322 #define LLDPD_RXTX_TXENABLED(v) ((v) == LLDPD_RXTX_TXONLY || (v) == LLDPD_RXTX_BOTH)
323 struct lldpd_port_set {
324 char *ifname;
325 char *local_id;
326 char *local_descr;
327 int rxtx;
328 #ifdef ENABLE_LLDPMED
329 struct lldpd_med_policy *med_policy;
330 struct lldpd_med_loc *med_location;
331 struct lldpd_med_power *med_power;
332 #endif
333 #ifdef ENABLE_DOT3
334 struct lldpd_dot3_power *dot3_power;
335 #endif
336 #ifdef ENABLE_CUSTOM
337 struct lldpd_custom *custom;
338 int custom_list_clear;
339 int custom_tlv_op;
340 #endif
341 };
342 MARSHAL_BEGIN(lldpd_port_set)
343 MARSHAL_STR(lldpd_port_set, ifname)
344 MARSHAL_STR(lldpd_port_set, local_id)
345 MARSHAL_STR(lldpd_port_set, local_descr)
346 #ifdef ENABLE_LLDPMED
347 MARSHAL_POINTER(lldpd_port_set, lldpd_med_policy, med_policy)
348 MARSHAL_POINTER(lldpd_port_set, lldpd_med_loc, med_location)
349 MARSHAL_POINTER(lldpd_port_set, lldpd_med_power, med_power)
350 #endif
351 #ifdef ENABLE_DOT3
352 MARSHAL_POINTER(lldpd_port_set, lldpd_dot3_power, dot3_power)
353 #endif
354 #ifdef ENABLE_CUSTOM
355 MARSHAL_POINTER(lldpd_port_set, lldpd_custom, custom)
356 #endif
357 MARSHAL_END(lldpd_port_set);
358
359 /* Smart mode / Hide mode */
360 #define SMART_INCOMING_FILTER (1<<0) /* Incoming filtering enabled */
361 #define SMART_INCOMING_ONE_PROTO (1<<1) /* On reception, keep only one proto */
362 #define SMART_INCOMING_ONE_NEIGH (1<<2) /* On reception, keep only one neighbor */
363 #define SMART_OUTGOING_FILTER (1<<3) /* Outgoing filtering enabled */
364 #define SMART_OUTGOING_ONE_PROTO (1<<4) /* On emission, keep only one proto */
365 #define SMART_OUTGOING_ONE_NEIGH (1<<5) /* On emission, consider only one neighbor */
366 #define SMART_INCOMING (SMART_INCOMING_FILTER | \
367 SMART_INCOMING_ONE_PROTO | \
368 SMART_INCOMING_ONE_NEIGH)
369 #define SMART_OUTGOING (SMART_OUTGOING_FILTER | \
370 SMART_OUTGOING_ONE_PROTO | \
371 SMART_OUTGOING_ONE_NEIGH)
372
373 struct lldpd_config {
374 int c_paused; /* lldpd is paused */
375 int c_tx_interval; /* Transmit interval */
376 int c_ttl; /* TTL */
377 int c_smart; /* Bitmask for smart configuration (see SMART_*) */
378 int c_receiveonly; /* Receive only mode */
379 int c_max_neighbors; /* Maximum number of neighbors (per protocol) */
380
381 char *c_mgmt_pattern; /* Pattern to match a management address */
382 char *c_cid_pattern; /* Pattern to match interfaces to use for chassis ID */
383 char *c_cid_string; /* User defined string for chassis ID */
384 char *c_iface_pattern; /* Pattern to match interfaces to use */
385 char *c_perm_ifaces; /* Pattern to match interfaces to keep */
386
387 char *c_platform; /* Override platform description (for CDP) */
388 char *c_description; /* Override chassis description */
389 char *c_hostname; /* Override system name */
390 int c_advertise_version; /* Should the precise version be advertised? */
391 int c_set_ifdescr; /* Set interface description */
392 int c_promisc; /* Interfaces should be in promiscuous mode */
393 int c_cap_advertise; /* Chassis capabilities advertisement */
394 int c_mgmt_advertise; /* Management addresses advertisement */
395
396 #ifdef ENABLE_LLDPMED
397 int c_noinventory; /* Don't send inventory with LLDP-MED */
398 int c_enable_fast_start; /* enable fast start */
399 int c_tx_fast_init; /* Num of lldpd lldppdu's for fast start */
400 int c_tx_fast_interval; /* Time intr between sends during fast start */
401 #endif
402 int c_tx_hold; /* Transmit hold */
403 int c_bond_slave_src_mac_type; /* Src mac type in lldp frames over bond
404 slaves */
405 int c_lldp_portid_type; /* The PortID type */
406 int c_lldp_agent_type; /* The agent type */
407 };
408 MARSHAL_BEGIN(lldpd_config)
409 MARSHAL_STR(lldpd_config, c_mgmt_pattern)
410 MARSHAL_STR(lldpd_config, c_cid_pattern)
411 MARSHAL_STR(lldpd_config, c_cid_string)
412 MARSHAL_STR(lldpd_config, c_iface_pattern)
413 MARSHAL_STR(lldpd_config, c_perm_ifaces)
414 MARSHAL_STR(lldpd_config, c_hostname)
415 MARSHAL_STR(lldpd_config, c_platform)
416 MARSHAL_STR(lldpd_config, c_description)
417 MARSHAL_END(lldpd_config);
418
419 struct lldpd_frame {
420 int size;
421 unsigned char frame[1];
422 };
423
424 struct lldpd_hardware;
425 struct lldpd;
426 struct lldpd_ops {
427 int(*send)(struct lldpd *,
428 struct lldpd_hardware*,
429 char *, size_t); /* Function to send a frame */
430 int(*recv)(struct lldpd *,
431 struct lldpd_hardware*,
432 int, char *, size_t); /* Function to receive a frame */
433 int(*cleanup)(struct lldpd *, struct lldpd_hardware *); /* Cleanup function. */
434 };
435
436 /* An interface is uniquely identified by h_ifindex, h_ifname and h_ops. This
437 * means if an interface becomes enslaved, it will be considered as a new
438 * interface. The same applies for renaming and we include the index in case of
439 * renaming to an existing interface. */
440 struct lldpd_hardware {
441 TAILQ_ENTRY(lldpd_hardware) h_entries;
442
443 struct lldpd *h_cfg; /* Pointer to main configuration */
444 void *h_recv; /* FD for reception */
445 int h_sendfd; /* FD for sending, only used by h_ops */
446 int h_mangle; /* 1 if we have to mangle the MAC address */
447 struct lldpd_ops *h_ops; /* Hardware-dependent functions */
448 void *h_data; /* Hardware-dependent data */
449 void *h_timer; /* Timer for this port */
450
451 int h_mtu;
452 int h_flags; /* Packets will be sent only
453 if IFF_RUNNING. Will be
454 removed if this is left
455 to 0. */
456 int h_ifindex; /* Interface index, used by SNMP */
457 char h_ifname[IFNAMSIZ]; /* Should be unique */
458 u_int8_t h_lladdr[ETHER_ADDR_LEN];
459
460 u_int64_t h_tx_cnt;
461 u_int64_t h_rx_cnt;
462 u_int64_t h_rx_discarded_cnt;
463 u_int64_t h_rx_unrecognized_cnt;
464 u_int64_t h_ageout_cnt;
465 u_int64_t h_insert_cnt;
466 u_int64_t h_delete_cnt;
467 u_int64_t h_drop_cnt;
468
469 /* Previous values of different stuff. */
470 /* Backup of the previous local port. Used to check if there was a
471 * change to send an immediate update. All those are not marshalled to
472 * the client. */
473 void *h_lport_previous;
474 ssize_t h_lport_previous_len;
475 /* Backup of the previous chassis ID. Used to check if there was a
476 * change and send an LLDP shutdown. */
477 u_int8_t h_lchassis_previous_id_subtype;
478 char *h_lchassis_previous_id;
479 int h_lchassis_previous_id_len;
480 /* Backup of the previous port ID. Used to check if there was a change
481 * and send an LLDP shutdown. */
482 u_int8_t h_lport_previous_id_subtype;
483 char *h_lport_previous_id;
484 int h_lport_previous_id_len;
485
486 struct lldpd_port h_lport; /* Port attached to this hardware port */
487 TAILQ_HEAD(, lldpd_port) h_rports; /* Remote ports */
488
489 #ifdef ENABLE_LLDPMED
490 int h_tx_fast; /* current tx fast start count */
491 #endif
492 };
493 MARSHAL_BEGIN(lldpd_hardware)
494 MARSHAL_IGNORE(lldpd_hardware, h_entries.tqe_next)
495 MARSHAL_IGNORE(lldpd_hardware, h_entries.tqe_prev)
496 MARSHAL_IGNORE(lldpd_hardware, h_ops)
497 MARSHAL_IGNORE(lldpd_hardware, h_data)
498 MARSHAL_IGNORE(lldpd_hardware, h_cfg)
499 MARSHAL_IGNORE(lldpd_hardware, h_lport_previous)
500 MARSHAL_IGNORE(lldpd_hardware, h_lport_previous_len)
501 MARSHAL_IGNORE(lldpd_hardware, h_lchassis_previous_id_subtype)
502 MARSHAL_IGNORE(lldpd_hardware, h_lchassis_previous_id)
503 MARSHAL_IGNORE(lldpd_hardware, h_lchassis_previous_id_len)
504 MARSHAL_IGNORE(lldpd_hardware, h_lport_previous_id_subtype)
505 MARSHAL_IGNORE(lldpd_hardware, h_lport_previous_id)
506 MARSHAL_IGNORE(lldpd_hardware, h_lport_previous_id_len)
507 MARSHAL_SUBSTRUCT(lldpd_hardware, lldpd_port, h_lport)
508 MARSHAL_SUBTQ(lldpd_hardware, lldpd_port, h_rports)
509 MARSHAL_END(lldpd_hardware);
510
511 struct lldpd_interface {
512 TAILQ_ENTRY(lldpd_interface) next;
513 char *name;
514 };
515 MARSHAL_BEGIN(lldpd_interface)
516 MARSHAL_TQE(lldpd_interface, next)
517 MARSHAL_STR(lldpd_interface, name)
518 MARSHAL_END(lldpd_interface);
519 TAILQ_HEAD(lldpd_interface_list, lldpd_interface);
520 MARSHAL_TQ(lldpd_interface_list, lldpd_interface);
521
522 struct lldpd_neighbor_change {
523 char *ifname;
524 #define NEIGHBOR_CHANGE_DELETED -1
525 #define NEIGHBOR_CHANGE_ADDED 1
526 #define NEIGHBOR_CHANGE_UPDATED 0
527 int state;
528 struct lldpd_port *neighbor;
529 };
530 MARSHAL_BEGIN(lldpd_neighbor_change)
531 MARSHAL_STR(lldpd_neighbor_change, ifname)
532 MARSHAL_POINTER(lldpd_neighbor_change, lldpd_port, neighbor)
533 MARSHAL_END(lldpd_neighbor_change);
534
535 /* Cleanup functions */
536 void lldpd_chassis_mgmt_cleanup(struct lldpd_chassis *);
537 void lldpd_chassis_cleanup(struct lldpd_chassis *, int);
538 void lldpd_remote_cleanup(struct lldpd_hardware *,
539 void(*expire)(struct lldpd_hardware *, struct lldpd_port *),
540 int);
541 void lldpd_port_cleanup(struct lldpd_port *, int);
542 void lldpd_config_cleanup(struct lldpd_config *);
543 #ifdef ENABLE_DOT1
544 void lldpd_ppvid_cleanup(struct lldpd_port *);
545 void lldpd_vlan_cleanup(struct lldpd_port *);
546 void lldpd_pi_cleanup(struct lldpd_port *);
547 #endif
548 #ifdef ENABLE_CUSTOM
549 void lldpd_custom_tlv_cleanup(struct lldpd_port *, struct lldpd_custom *);
550 void lldpd_custom_tlv_add(struct lldpd_port *, struct lldpd_custom *);
551 void lldpd_custom_list_cleanup(struct lldpd_port *);
552 #endif
553
554 #endif