| 42 | |
| 43 | #ifndef RTE_EXEC_ENV_WINDOWS |
| 44 | struct socket { |
| 45 | int sock; |
| 46 | char path[sizeof(((struct sockaddr_un *)0)->sun_path)]; |
| 47 | handler fn; |
| 48 | RTE_ATOMIC(uint16_t) *num_clients; |
| 49 | }; |
| 50 | static struct socket v2_socket; /* socket for v2 telemetry */ |
| 51 | static struct socket v1_socket; /* socket for v1 telemetry */ |
| 52 | #endif /* !RTE_EXEC_ENV_WINDOWS */ |
no outgoing calls