+/*
+ * TOS metric struct (will be 0 or more in router links update)
+ */
+struct tos_metric {
+ nd_uint8_t tos_type;
+ nd_uint8_t reserved;
+ nd_uint16_t tos_metric;
+};
+struct tos_link {
+ nd_uint8_t link_type;
+ nd_uint8_t link_tos_count;
+ nd_uint16_t tos_metric;
+};
+union un_tos {
+ struct tos_link link;
+ struct tos_metric metrics;
+};