| 78 | } |
| 79 | |
| 80 | int sendMessage(PeerId peer, const flatbuffers::FlatBufferBuilder& buffer) |
| 81 | { |
| 82 | int ret = humblenet_p2p_sendto(buffer.GetBufferPointer(), buffer.GetSize(), peer, SEND_RELIABLE, CHANNEL); |
| 83 | return ret; |
| 84 | } |
| 85 | |
| 86 | void sendChat(const char* message) |
| 87 | { |
no outgoing calls
no test coverage detected