Changeset 885 – HoverRace

Changeset 885

Show
Ignore:
Timestamp:
03/01/10 01:56:52 (5 months ago)
Author:
ryan
Message:

Oops, I forgot to update this file (although it still compiled), it now has correct declarations

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/server/Server.h

    r881 r885  
    4747    private: 
    4848        void HandleTCPAccept(TCPConnection *newConn, const boost::system::error_code &error); 
     49        void HandleUDPConnect(UDPConnection *udpConn, const boost::system::error_code &error); 
    4950 
    5051        std::vector<Connection> connections; 
    5152        //std::vector<Game> games; // games we are managing 
    5253 
    53         TCPConnection *nextConnection; 
     54        TCPConnection *tcpConnection; 
     55        boost::asio::ip::udp::socket udpSocket; 
     56        boost::asio::ip::udp::endpoint udpSender; 
    5457 
    5558        boost::asio::io_service io_service;