summaryrefslogtreecommitdiff
path: root/server/lobby.h
blob: 07ed13df5b1192e5dee249b4c65c2850bd9b14fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef LOBBY_H
#define LOBBY_H

#include <boost/asio.hpp>

#include "tcpserver.h"

class Lobby {
	private:
		boost::asio::io_service io_service;
		TCPServer server;
		
		//! Handle new connection.
		void handle_connect(Connection::p connection);
		
		//! Handle login.
		void handle_login(Connection::p connection, Message::p msg);
	
	public:
		Lobby();
		
		void run();
};

#endif