Different signature means that the Channel needs separate sockets.
| 31 | |
| 32 | // Different signature means that the Channel needs separate sockets. |
| 33 | struct ChannelSignature { |
| 34 | uint64_t data[2]; |
| 35 | |
| 36 | ChannelSignature() { Reset(); } |
| 37 | void Reset() { data[0] = data[1] = 0; } |
| 38 | }; |
| 39 | |
| 40 | inline bool operator==(const ChannelSignature& s1, const ChannelSignature& s2) { |
| 41 | return s1.data[0] == s2.data[0] && s1.data[1] == s2.data[1]; |
no outgoing calls
no test coverage detected