network_udp.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00012 #ifndef NETWORK_UDP_H
00013 #define NETWORK_UDP_H
00014
00015 #ifdef ENABLE_NETWORK
00016
00017 #include "core/address.h"
00018
00019 void NetworkUDPInitialize();
00020 void NetworkUDPSearchGame();
00021 void NetworkUDPQueryMasterServer();
00022 void NetworkUDPQueryServer(NetworkAddress address, bool manually = false);
00023 void NetworkUDPAdvertise();
00024 void NetworkUDPRemoveAdvertise(bool blocking);
00025 void NetworkUDPClose();
00026
00027 #endif
00028
00029 #endif