2 # -*- coding: utf-8 -*-
4 GalTacK network protocol implementation (compatible to Galcon).
6 Import this module this way:
8 import galtack.net # instead of: from galtack.net import *
10 to avoid namespace pollution and confusion around the name 'net' in your
13 # Copyright (C) 2007 Felix Rabe <public@felixrabe.textdriven.com>
14 # Copyright (C) 2007 Michael Carter
16 # Permission is hereby granted, free of charge, to any person obtaining a
17 # copy of this software and associated documentation files (the
18 # "Software"), to deal in the Software without restriction, including
19 # without limitation the rights to use, copy, modify, merge, publish,
20 # distribute, sublicense, and/or sell copies of the Software, and to permit
21 # persons to whom the Software is furnished to do so, subject to the
22 # following conditions:
24 # The above copyright notice and this permission notice shall be included
25 # in all copies or substantial portions of the Software.
27 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
28 # OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
29 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
30 # IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
31 # CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT
32 # OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
33 # THE USE OR OTHER DEALINGS IN THE SOFTWARE.
35 # Recommended line length or text width: 75 characters.
37 from galtack
.net_common
import *
38 from galtack
.net_server_list
import *
39 from galtack
.net_client
import *