| 1247 | } |
| 1248 | |
| 1249 | void ENetPeer::QueueOutgoingCommand(ENetProtocol& command, ENetPacketRef packet, UInt32 offset, UInt16 length) |
| 1250 | { |
| 1251 | OutgoingCommand outgoingCommand; |
| 1252 | outgoingCommand.command = command; |
| 1253 | outgoingCommand.fragmentLength = length; |
| 1254 | outgoingCommand.fragmentOffset = offset; |
| 1255 | outgoingCommand.packet = packet; |
| 1256 | |
| 1257 | SetupOutgoingCommand(outgoingCommand); |
| 1258 | } |
| 1259 | |
| 1260 | void ENetPeer::SetupOutgoingCommand(OutgoingCommand& outgoingCommand) |
| 1261 | { |
no outgoing calls
no test coverage detected