diff options
author | eihrul <eihrul> | 2010-06-05 20:31:31 +0000 |
---|---|---|
committer | eihrul <eihrul> | 2010-06-05 20:31:31 +0000 |
commit | 2d985dba913f815302b8fb86c9ff0956f3c2f1a3 (patch) | |
tree | d156a1972b119b37e34273c03f2bd268c1c25341 /peer.c | |
parent | 4c8544636be6c928e6675529c46d3c1d1d248f7d (diff) | |
download | enet-2d985dba913f815302b8fb86c9ff0956f3c2f1a3.tar.gz enet-2d985dba913f815302b8fb86c9ff0956f3c2f1a3.zip |
fragment dispatching fix
Diffstat (limited to 'peer.c')
-rw-r--r-- | peer.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -585,7 +585,7 @@ enet_peer_queue_outgoing_command (ENetPeer * peer, const ENetProtocol * command, return outgoingCommand; } -static void +void enet_peer_dispatch_incoming_unreliable_commands (ENetPeer * peer, ENetChannel * channel) { ENetListIterator currentCommand; @@ -614,7 +614,7 @@ enet_peer_dispatch_incoming_unreliable_commands (ENetPeer * peer, ENetChannel * } } -static void +void enet_peer_dispatch_incoming_reliable_commands (ENetPeer * peer, ENetChannel * channel) { ENetListIterator currentCommand; |