Mana
Loading...
Searching...
No Matches
network.h
Go to the documentation of this file.
1/*
2 * The Mana Client
3 * Copyright (C) 2004-2009 The Mana World Development Team
4 * Copyright (C) 2009-2012 The Mana Developers
5 *
6 * This file is part of The Mana Client.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 */
21
22#pragma once
23
24#include <iosfwd>
25
29namespace ManaServ
30{
31 class MessageHandler;
32 class MessageOut;
33
34 class Connection;
35
39 void initialize();
40
44 void finalize();
45
49 Connection *getConnection();
50
55 void registerHandler(MessageHandler *handler);
56
60 void unregisterHandler(MessageHandler *handler);
61
66
67 /*
68 * Handles all events and dispatches incoming messages to the
69 * registered handlers
70 */
71 void flush();
72} // namespace ManaServ
void clearNetworkHandlers()
Clears all registered message handlers.
Definition network.cpp:100
Connection * getConnection()
Returns a new Connection object.
Definition network.cpp:77
void flush()
Definition network.cpp:135
void initialize()
Initializes the network subsystem.
Definition network.cpp:47
void registerHandler(MessageHandler *handler)
Registers a message handler.
Definition network.cpp:88
void finalize()
Finalizes the network subsystem.
Definition network.cpp:62
void unregisterHandler(MessageHandler *handler)
Unregisters a message handler.
Definition network.cpp:94