From 02f775d7c259d20174746892c5bfa48f864869c4 Mon Sep 17 00:00:00 2001 From: Olaf Rempel Date: Sun, 16 Apr 2006 20:06:43 +0200 Subject: [PATCH] remove mod_hlswproxy --- Makefile | 2 +- hlswmaster.cpp | 2 -- mod_hlswproxy.cpp | 25 ------------------------- mod_hlswproxy.h | 18 ------------------ 4 files changed, 1 insertion(+), 46 deletions(-) delete mode 100644 mod_hlswproxy.cpp delete mode 100644 mod_hlswproxy.h diff --git a/Makefile b/Makefile index cd897bb..ac8ae90 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ HLSWMASTER_SRC := config.o gameentry.o gamelist.o gameparser.o gamescanner.o \ hlswmaster.o hlswserver.o logging.o modhelper.o modulelist.o \ multisock.o netpkt.o recvqueue.o socket.o timerservice.o thread.o \ mod_d3engine.o mod_gamespy1.o mod_gamespy2.o mod_halflife.o \ - mod_hlswproxy.o mod_q3engine.o mod_quake2.o mod_ut.o + mod_q3engine.o mod_quake2.o mod_ut.o all: hlswmaster masterquery diff --git a/hlswmaster.cpp b/hlswmaster.cpp index 0655fc7..d287335 100644 --- a/hlswmaster.cpp +++ b/hlswmaster.cpp @@ -17,7 +17,6 @@ #include "mod_gamespy1.h" #include "mod_gamespy2.h" #include "mod_halflife.h" -#include "mod_hlswproxy.h" #include "mod_q3engine.h" #include "mod_quake2.h" #include "mod_ut.h" @@ -102,7 +101,6 @@ int main(int argc, char *argv[]) modList.reg(new ModGameSpy1()); modList.reg(new ModGameSpy2()); modList.reg(new ModHalfLife()); - modList.reg(new ModHlswProxy(conf)); modList.reg(new ModQ3Engine()); modList.reg(new ModQuake2()); modList.reg(new ModUT()); diff --git a/mod_hlswproxy.cpp b/mod_hlswproxy.cpp deleted file mode 100644 index d00b897..0000000 --- a/mod_hlswproxy.cpp +++ /dev/null @@ -1,25 +0,0 @@ -#include -#include "netpkt.h" -#include "modhelper.h" -#include "mod_hlswproxy.h" - -ModHlswProxy::ModHlswProxy(Config& conf) -{ - // TODO: implement -} - -ModHlswProxy::~ModHlswProxy() -{ - // TODO: implement -} - -void ModHlswProxy::scan(MultiSock* msock) -{ - // TODO: implement -} - -int ModHlswProxy::parse(NetPkt* pkt, GameList* glist) -{ - // TODO: implement - return PARSE_REJECT; -} diff --git a/mod_hlswproxy.h b/mod_hlswproxy.h deleted file mode 100644 index 8522461..0000000 --- a/mod_hlswproxy.h +++ /dev/null @@ -1,18 +0,0 @@ -#ifndef _MODHLSWPROXY_H_ -#define _MODHLSWPROXY_H_ - -#include "config.h" -#include "module.h" - -class ModHlswProxy : public Module { -public: - ModHlswProxy(Config& conf); - ~ModHlswProxy(); - - void scan(MultiSock* msock); - int parse(NetPkt* pkt, GameList* glist); - - const char* getName() { return "HlswProxy"; } -}; - -#endif // _MODHLSWPROXY_H_