~ubuntu-branches/ubuntu/precise/pokerth/precise-proposed

« back to all changes in this revision

Viewing changes to src/net/serveraccepthelper.h

  • Committer: Bazaar Package Importer
  • Author(s): Evgeni Golov
  • Date: 2009-06-26 00:23:56 UTC
  • mfrom: (1.1.7 upstream) (5.1.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090626002356-p3nrzdhhqwk5gpf0
Tags: 0.7.1-1
* New upstream release.
* debian/control:
  + Build-Depend on unversioned boost packages again.
    Closes: #531119, #534086
  + Improve pokerth-server description, one does not need the package
    for one-table games.
  + Standards-Version: 3.8.2, no changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright (C) 2007-2009 by Lothar May                                 *
 
3
 *                                                                         *
 
4
 *   This program is free software; you can redistribute it and/or modify  *
 
5
 *   it under the terms of the GNU General Public License as published by  *
 
6
 *   the Free Software Foundation; either version 2 of the License, or     *
 
7
 *   (at your option) any later version.                                   *
 
8
 *                                                                         *
 
9
 *   This program is distributed in the hope that it will be useful,       *
 
10
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
11
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
12
 *   GNU General Public License for more details.                          *
 
13
 *                                                                         *
 
14
 *   You should have received a copy of the GNU General Public License     *
 
15
 *   along with this program; if not, write to the                         *
 
16
 *   Free Software Foundation, Inc.,                                       *
 
17
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
 
18
 ***************************************************************************/
 
19
/* Network server helper to accept connections. */
 
20
 
 
21
#ifndef _SERVERACCEPTHELPER_H_
 
22
#define _SERVERACCEPTHELPER_H_
 
23
 
 
24
#include <boost/asio.hpp>
 
25
#include <string>
 
26
 
 
27
#include <game_defs.h>
 
28
#include <gui/guiinterface.h>
 
29
 
 
30
class ServerLobbyThread;
 
31
 
 
32
class ServerAcceptHelper
 
33
{
 
34
public:
 
35
        ServerAcceptHelper(ServerCallback &serverCallback, boost::shared_ptr<boost::asio::io_service> ioService);
 
36
        virtual ~ServerAcceptHelper();
 
37
 
 
38
        // Set the parameters.
 
39
        void Listen(unsigned serverPort, bool ipv6, bool sctp, const std::string &pwd, const std::string &logDir,
 
40
                boost::shared_ptr<ServerLobbyThread> lobbyThread);
 
41
 
 
42
protected:
 
43
 
 
44
        void InternalListen(unsigned serverPort, bool ipv6, bool sctp);
 
45
        void HandleAccept(boost::shared_ptr<boost::asio::ip::tcp::socket> acceptedSocket,
 
46
                const boost::system::error_code &error);
 
47
 
 
48
        ServerCallback &GetCallback();
 
49
 
 
50
        ServerLobbyThread &GetLobbyThread();
 
51
 
 
52
private:
 
53
        boost::shared_ptr<boost::asio::io_service> m_ioService;
 
54
        boost::shared_ptr<boost::asio::ip::tcp::acceptor> m_acceptor;
 
55
        boost::shared_ptr<boost::asio::ip::tcp::endpoint> m_endpoint;
 
56
        ServerCallback &m_serverCallback;
 
57
 
 
58
        boost::shared_ptr<ServerLobbyThread> m_lobbyThread;
 
59
};
 
60
 
 
61
#endif