| 88 | struct StateQuery |
| 89 | { |
| 90 | StateQuery() |
| 91 | { |
| 92 | using Random = ableton::platforms::stl::Random; |
| 93 | mState.nodeState.sessionId = NodeId::random<Random>(); |
| 94 | mState.measurementEndpoint = |
| 95 | discovery::UdpEndpoint(discovery::makeAddress("127.0.0.1"), 9999); |
| 96 | } |
| 97 | |
| 98 | PeerState operator()() const { return mState; } |
| 99 | PeerState mState; |
nothing calls this directly
no test coverage detected