| 44 | * Router table schema |
| 45 | */ |
| 46 | struct obj_collector { |
| 47 | u_char hash_id[16]; ///< Hash ID for collector (is the unique ID) |
| 48 | char admin_id[64]; ///< Admin ID for collector |
| 49 | u_char descr[255]; ///< Description of collector |
| 50 | |
| 51 | char routers[4096]; ///< List of connected routers hash ID's delimited by PIPE |
| 52 | uint32_t router_count; ///< Count of active/connected routers |
| 53 | uint32_t timestamp_secs; ///< Timestamp in seconds since EPOC |
| 54 | uint32_t timestamp_us; ///< Timestamp microseconds |
| 55 | }; |
| 56 | |
| 57 | /// Collector action codes |
| 58 | enum collector_action_code { |
nothing calls this directly
no outgoing calls
no test coverage detected