remove mod_hlswproxy

This commit is contained in:
Olaf Rempel 2006-04-16 20:06:43 +02:00
parent 65bc7cd5e0
commit 02f775d7c2
4 changed files with 1 additions and 46 deletions

View File

@ -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

View File

@ -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());

View File

@ -1,25 +0,0 @@
#include <string.h>
#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;
}

View File

@ -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_