├── .gitignore ├── BUGS ├── COPYING ├── CREDITS ├── IGNOREME ├── LICENSE ├── README.md ├── TODO ├── UPDATE ├── Win32-Projects ├── Makefile.BORLAND ├── PvPGN.sln ├── PvPGN.vcproj ├── PvPGNConsole.sln ├── PvPGNConsole.vcproj ├── PvPGNConsole.vcxproj ├── PvPGNConsole.vcxproj.filters ├── PvPGNConsole.vcxproj.user ├── bncdb.vcproj ├── bnchat.sln ├── bnchat.vcproj ├── bnftp.vcproj ├── d2cs.sln ├── d2cs.vcproj ├── d2csConsole.sln ├── d2csConsole.vcproj ├── d2dbs.sln ├── d2dbs.vcproj ├── d2dbsConsole.sln ├── d2dbsConsole.vcproj └── make_borland.bat ├── conf ├── ad.conf ├── address_translation.conf ├── anongame_infos.conf ├── autoupdate.conf ├── bnalias.conf ├── bnban.conf ├── bnetd.conf.in ├── bnetd.conf.win32 ├── bnetd_default_user.cdb ├── bnetd_default_user.plain ├── bnhelp.conf ├── bnissue.txt ├── bnmaps.conf ├── bnmotd.txt ├── bnxpcalc.conf ├── bnxplevel.conf ├── channel.conf ├── command_groups.conf ├── d2cs.conf.in ├── d2cs.conf.win32 ├── d2dbs.conf.in ├── d2dbs.conf.win32 ├── d2server.ini ├── news.txt ├── realm.conf ├── sql_DB_layout.conf ├── sql_DB_layout2.conf ├── supportfile.conf ├── topics.conf ├── tournament.conf └── versioncheck.conf ├── docs ├── Compile.Instructions.Win32.Borland.txt ├── Compile.Instructions.Win32.Dev-C++.txt ├── Compile.Instructions.Win32.VS.Net.txt ├── INDEX ├── INSTALL.unix ├── PORTS ├── README.fdwatch ├── README.storage └── bnmotd.txt ├── files ├── ad000001.mng ├── ad000001.smk ├── ad000002.mng ├── ad000003.mng ├── ad000004.mng ├── ad000075.mng ├── chathelp-war3-default.txt ├── chathelp-war3-enUS.txt ├── chathelp-war3-frFR.txt ├── chathelp-war3-ruRU.txt ├── chathelp-war3-zhCN.txt ├── newaccount-default.txt ├── newaccount-enUS.txt ├── newbie.save ├── termsofservice-default.txt ├── termsofservice-enUS.txt ├── tos-unicode_default.txt ├── tos.txt └── tos_default.txt ├── man ├── bnbot.1 ├── bnchat.1 ├── bnetd.1 ├── bnetd.conf.5 ├── bnftp.1 ├── bni2tga.1 ├── bnibuild.1 ├── bniextract.1 ├── bnilist.1 ├── bnpass.1 ├── bnpcap.1 ├── bnproxy.1 ├── bnstat.1 ├── bntext.5 ├── bntrackd.1 └── tgainfo.1 ├── scripts ├── S98bnetd ├── announce.sh ├── bnetd.init ├── bnetd.logrotate ├── bnetmasq.sh ├── convert_w3.pl ├── cvs2cl.pl ├── flat2cdb.pl ├── fsgs2bnetd.pl ├── ladder.py ├── lastlogin.pl ├── login_testusers.sh ├── make_testusers.sh ├── process.pl ├── pvpgn_hash.inc.php ├── rc.bnetd ├── reform.awk ├── sql │ └── repairlevels.pl ├── storage │ ├── cdb2sql.pl │ └── plain2sql.pl ├── tos.bat └── tos.sh ├── src ├── Makefile.in ├── autoconf │ ├── ansi2knr.c │ ├── ccstdc.m4 │ ├── config.guess │ ├── config.sub │ ├── install-sh │ ├── mkdir-p │ ├── mkdir.m4 │ ├── termios.m4 │ └── winsz.m4 ├── autogen.sh ├── bnetd │ ├── account.c │ ├── account.h │ ├── account_wrap.c │ ├── account_wrap.h │ ├── adbanner.c │ ├── adbanner.h │ ├── alias_command.c │ ├── alias_command.h │ ├── anongame.c │ ├── anongame.h │ ├── anongame_gameresult.c │ ├── anongame_gameresult.h │ ├── anongame_infos.c │ ├── anongame_infos.h │ ├── anongame_maplists.c │ ├── anongame_maplists.h │ ├── attr.h │ ├── attrgroup.c │ ├── attrgroup.h │ ├── attrlayer.c │ ├── attrlayer.h │ ├── autoupdate.c │ ├── autoupdate.h │ ├── bnetd_log.c │ ├── bnetd_log.h │ ├── channel.c │ ├── channel.h │ ├── channel_conv.c │ ├── channel_conv.h │ ├── character.c │ ├── character.h │ ├── clan.c │ ├── clan.h │ ├── cmdline.c │ ├── cmdline.h │ ├── command.c │ ├── command.h │ ├── command_groups.c │ ├── command_groups.h │ ├── connection.c │ ├── connection.h │ ├── file.c │ ├── file.h │ ├── file_cdb.c │ ├── file_cdb.h │ ├── file_plain.c │ ├── file_plain.h │ ├── friends.c │ ├── friends.h │ ├── game.c │ ├── game.h │ ├── game_conv.c │ ├── game_conv.h │ ├── handle_anongame.c │ ├── handle_anongame.h │ ├── handle_bnet.c │ ├── handle_bnet.h │ ├── handle_bot.c │ ├── handle_bot.h │ ├── handle_d2cs.c │ ├── handle_d2cs.h │ ├── handle_file.c │ ├── handle_file.h │ ├── handle_init.c │ ├── handle_init.h │ ├── handle_irc.c │ ├── handle_irc.h │ ├── handle_telnet.c │ ├── handle_telnet.h │ ├── handle_udp.c │ ├── handle_udp.h │ ├── handlers.h │ ├── helpfile.c │ ├── helpfile.h │ ├── ipban.c │ ├── ipban.h │ ├── irc.c │ ├── irc.h │ ├── ladder.c │ ├── ladder.h │ ├── ladder_binary.c │ ├── ladder_binary.h │ ├── ladder_calc.c │ ├── ladder_calc.h │ ├── mail.c │ ├── mail.h │ ├── main.c │ ├── message.c │ ├── message.h │ ├── news.c │ ├── news.h │ ├── output.c │ ├── output.h │ ├── prefs.c │ ├── prefs.h │ ├── quota.h │ ├── realm.c │ ├── realm.h │ ├── runprog.c │ ├── runprog.h │ ├── server.c │ ├── server.h │ ├── sql_common.c │ ├── sql_common.h │ ├── sql_dbcreator.c │ ├── sql_dbcreator.h │ ├── sql_mysql.c │ ├── sql_mysql.h │ ├── sql_odbc.c │ ├── sql_odbc.h │ ├── sql_pgsql.c │ ├── sql_pgsql.h │ ├── sql_sqlite3.c │ ├── sql_sqlite3.h │ ├── storage.c │ ├── storage.h │ ├── storage_file.c │ ├── storage_file.h │ ├── storage_sql.c │ ├── storage_sql.h │ ├── storage_sql2.c │ ├── storage_sql2.h │ ├── support.c │ ├── support.h │ ├── team.c │ ├── team.h │ ├── tick.c │ ├── tick.h │ ├── timer.c │ ├── timer.h │ ├── topic.c │ ├── topic.h │ ├── tournament.c │ ├── tournament.h │ ├── tracker.c │ ├── udptest_send.c │ ├── udptest_send.h │ ├── versioncheck.c │ ├── versioncheck.h │ ├── watch.c │ └── watch.h ├── bniutils │ ├── bni.c │ ├── bni.h │ ├── bni2tga.c │ ├── bnibuild.c │ ├── bniextract.c │ ├── bnilist.c │ ├── fileio.c │ ├── fileio.h │ ├── tga.c │ ├── tga.h │ └── tgainfo.c ├── bnpass │ └── bnpass.c ├── bnpcap │ ├── .cvsignore │ ├── Makefile │ └── bnpcap.c ├── bnproxy │ ├── bnproxy.c │ ├── virtconn.c │ └── virtconn.h ├── bntrackd │ ├── bntrackd.c │ └── servers.xsl ├── client │ ├── ansi_term.h │ ├── bnbot.c │ ├── bnchat.c │ ├── bnftp.c │ ├── bnstat.c │ ├── client.c │ ├── client.h │ ├── client_connect.c │ ├── client_connect.h │ ├── udptest.c │ └── udptest.h ├── common │ ├── addr.c │ ├── addr.h │ ├── anongame_protocol.h │ ├── asnprintf.c │ ├── asnprintf.h │ ├── bn_type.c │ ├── bn_type.h │ ├── bnet_protocol.h │ ├── bnethash.c │ ├── bnethash.h │ ├── bnethashconv.c │ ├── bnethashconv.h │ ├── bnettime.c │ ├── bnettime.h │ ├── bot_protocol.h │ ├── cdbhash.h │ ├── conf.c │ ├── conf.h │ ├── d2char_checksum.c │ ├── d2char_checksum.h │ ├── d2char_file.h │ ├── d2game_protocol.h │ ├── elist.h │ ├── eventlog.c │ ├── eventlog.h │ ├── fdwatch.c │ ├── fdwatch.h │ ├── fdwatch_epoll.c │ ├── fdwatch_epoll.h │ ├── fdwatch_iocp.c │ ├── fdwatch_iocp.h │ ├── fdwatch_kqueue.c │ ├── fdwatch_kqueue.h │ ├── fdwatch_poll.c │ ├── fdwatch_poll.h │ ├── fdwatch_select.c │ ├── fdwatch_select.h │ ├── field_sizes.h │ ├── file_protocol.h │ ├── flags.h │ ├── give_up_root_privileges.c │ ├── give_up_root_privileges.h │ ├── hashtable.c │ ├── hashtable.h │ ├── hexdump.c │ ├── hexdump.h │ ├── init_protocol.h │ ├── introtate.h │ ├── irc_protocol.h │ ├── list.c │ ├── list.h │ ├── lstr.h │ ├── network.c │ ├── network.h │ ├── packet.c │ ├── packet.h │ ├── proginfo.c │ ├── proginfo.h │ ├── queue.c │ ├── queue.h │ ├── rcm.c │ ├── rcm.h │ ├── rlimit.c │ ├── rlimit.h │ ├── setup_after.h │ ├── setup_before.h │ ├── tag.c │ ├── tag.h │ ├── token.c │ ├── token.h │ ├── tracker.h │ ├── trans.c │ ├── trans.h │ ├── udp_protocol.h │ ├── util.c │ ├── util.h │ ├── version.h │ ├── xalloc.c │ ├── xalloc.h │ ├── xstr.c │ ├── xstr.h │ ├── xstring.c │ └── xstring.h ├── compat │ ├── access.h │ ├── char_bit.h │ ├── difftime.c │ ├── difftime.h │ ├── exitstatus.h │ ├── gethostname.h │ ├── getopt.c │ ├── getopt.h │ ├── gettimeofday.c │ ├── gettimeofday.h │ ├── inet_aton.c │ ├── inet_aton.h │ ├── inet_ntoa.c │ ├── inet_ntoa.h │ ├── memcpy.c │ ├── memcpy.h │ ├── memmove.c │ ├── memmove.h │ ├── memset.c │ ├── memset.h │ ├── mkdir.h │ ├── mmap.c │ ├── mmap.h │ ├── netinet_in.h │ ├── pdir.c │ ├── pdir.h │ ├── psock.c │ ├── psock.h │ ├── read.h │ ├── recv.h │ ├── rename.h │ ├── seek.h │ ├── send.h │ ├── signal.h │ ├── snprintf.c │ ├── snprintf.h │ ├── socket.h │ ├── statmacros.h │ ├── stdfileno.h │ ├── strcasecmp.c │ ├── strcasecmp.h │ ├── strchr.h │ ├── strdup.c │ ├── strdup.h │ ├── strerror.c │ ├── strerror.h │ ├── strftime.c │ ├── strftime.h │ ├── strncasecmp.c │ ├── strncasecmp.h │ ├── strrchr.h │ ├── strsep.c │ ├── strsep.h │ ├── strtoul.c │ ├── strtoul.h │ ├── termios.h │ ├── uint.h │ ├── uname.c │ ├── uname.h │ ├── vargs.h │ ├── vsnprintf.c │ └── vsnprintf.h ├── config.h.in ├── configure ├── configure.in ├── d2cs │ ├── bit.h │ ├── bnetd.c │ ├── bnetd.h │ ├── cmdline.c │ ├── cmdline.h │ ├── connection.c │ ├── connection.h │ ├── d2charfile.c │ ├── d2charfile.h │ ├── d2charlist.c │ ├── d2charlist.h │ ├── d2cs_bnetd_protocol.h │ ├── d2cs_d2dbs_ladder.h │ ├── d2cs_d2gs_character.h │ ├── d2cs_d2gs_protocol.h │ ├── d2cs_protocol.h │ ├── d2gs.c │ ├── d2gs.h │ ├── d2ladder.c │ ├── d2ladder.h │ ├── game.c │ ├── game.h │ ├── gamequeue.c │ ├── gamequeue.h │ ├── handle_bnetd.c │ ├── handle_bnetd.h │ ├── handle_d2cs.c │ ├── handle_d2cs.h │ ├── handle_d2gs.c │ ├── handle_d2gs.h │ ├── handle_init.c │ ├── handle_init.h │ ├── handle_signal.c │ ├── handle_signal.h │ ├── main.c │ ├── net.c │ ├── net.h │ ├── prefs.c │ ├── prefs.h │ ├── s2s.c │ ├── s2s.h │ ├── server.c │ ├── server.h │ ├── serverqueue.c │ ├── serverqueue.h │ ├── setup.h │ └── version.h ├── mysql │ ├── config-win.h │ ├── decimal.h │ ├── errmsg.h │ ├── keycache.h │ ├── libmysql.def │ ├── libmysqld.def │ ├── m_ctype.h │ ├── m_string.h │ ├── my_alloc.h │ ├── my_attribute.h │ ├── my_dbug.h │ ├── my_dir.h │ ├── my_getopt.h │ ├── my_global.h │ ├── my_list.h │ ├── my_net.h │ ├── my_no_pthread.h │ ├── my_pthread.h │ ├── my_sys.h │ ├── my_xml.h │ ├── mysql.h │ ├── mysql │ │ └── plugin.h │ ├── mysql_com.h │ ├── mysql_embed.h │ ├── mysql_time.h │ ├── mysql_version.h │ ├── mysqld_ername.h │ ├── mysqld_error.h │ ├── raid.h │ ├── sql_common.h │ ├── sql_state.h │ ├── sslopt-case.h │ ├── sslopt-longopts.h │ ├── sslopt-vars.h │ └── typelib.h ├── tinycdb │ ├── ChangeLog │ ├── cdb.c │ ├── cdb.h │ ├── cdb_find.c │ ├── cdb_findnext.c │ ├── cdb_hash.c │ ├── cdb_init.c │ ├── cdb_int.h │ ├── cdb_make.c │ ├── cdb_make_add.c │ ├── cdb_make_find.c │ ├── cdb_make_put.c │ ├── cdb_seek.c │ ├── cdb_seq.c │ └── cdb_unpack.c ├── win32 │ ├── configwin.h │ ├── console_resource.h │ ├── console_resource.rc │ ├── d2cs_resource.h │ ├── d2cs_resource.rc │ ├── d2cs_winmain.c │ ├── d2dbs_resource.h │ ├── d2dbs_resource.rc │ ├── d2dbs_winmain.c │ ├── logo01.ico │ ├── resource.h │ ├── resource.rc │ ├── service.c │ ├── service.h │ ├── winmain.c │ └── winmain.h └── zlib │ ├── pvpgn_adler32.c │ ├── pvpgn_deflate.c │ ├── pvpgn_deflate.h │ ├── pvpgn_trees.c │ ├── pvpgn_trees.h │ ├── pvpgn_zconf.h │ ├── pvpgn_zlib.h │ ├── pvpgn_zutil.c │ ├── pvpgn_zutil.h │ └── zlib_license.html └── version-history.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/.gitignore -------------------------------------------------------------------------------- /BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/BUGS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/COPYING -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/CREDITS -------------------------------------------------------------------------------- /IGNOREME: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/IGNOREME -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/TODO -------------------------------------------------------------------------------- /UPDATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/UPDATE -------------------------------------------------------------------------------- /Win32-Projects/Makefile.BORLAND: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/Win32-Projects/Makefile.BORLAND -------------------------------------------------------------------------------- /Win32-Projects/PvPGN.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/Win32-Projects/PvPGN.sln -------------------------------------------------------------------------------- /Win32-Projects/PvPGN.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/Win32-Projects/PvPGN.vcproj -------------------------------------------------------------------------------- /Win32-Projects/PvPGNConsole.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/Win32-Projects/PvPGNConsole.sln -------------------------------------------------------------------------------- /Win32-Projects/PvPGNConsole.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/Win32-Projects/PvPGNConsole.vcproj -------------------------------------------------------------------------------- /Win32-Projects/PvPGNConsole.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/Win32-Projects/PvPGNConsole.vcxproj -------------------------------------------------------------------------------- /Win32-Projects/PvPGNConsole.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/Win32-Projects/PvPGNConsole.vcxproj.filters -------------------------------------------------------------------------------- /Win32-Projects/PvPGNConsole.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/Win32-Projects/PvPGNConsole.vcxproj.user -------------------------------------------------------------------------------- /Win32-Projects/bncdb.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/Win32-Projects/bncdb.vcproj -------------------------------------------------------------------------------- /Win32-Projects/bnchat.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/Win32-Projects/bnchat.sln -------------------------------------------------------------------------------- /Win32-Projects/bnchat.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/Win32-Projects/bnchat.vcproj -------------------------------------------------------------------------------- /Win32-Projects/bnftp.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/Win32-Projects/bnftp.vcproj -------------------------------------------------------------------------------- /Win32-Projects/d2cs.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/Win32-Projects/d2cs.sln -------------------------------------------------------------------------------- /Win32-Projects/d2cs.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/Win32-Projects/d2cs.vcproj -------------------------------------------------------------------------------- /Win32-Projects/d2csConsole.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/Win32-Projects/d2csConsole.sln -------------------------------------------------------------------------------- /Win32-Projects/d2csConsole.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/Win32-Projects/d2csConsole.vcproj -------------------------------------------------------------------------------- /Win32-Projects/d2dbs.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/Win32-Projects/d2dbs.sln -------------------------------------------------------------------------------- /Win32-Projects/d2dbs.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/Win32-Projects/d2dbs.vcproj -------------------------------------------------------------------------------- /Win32-Projects/d2dbsConsole.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/Win32-Projects/d2dbsConsole.sln -------------------------------------------------------------------------------- /Win32-Projects/d2dbsConsole.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/Win32-Projects/d2dbsConsole.vcproj -------------------------------------------------------------------------------- /Win32-Projects/make_borland.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/Win32-Projects/make_borland.bat -------------------------------------------------------------------------------- /conf/ad.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/conf/ad.conf -------------------------------------------------------------------------------- /conf/address_translation.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/conf/address_translation.conf -------------------------------------------------------------------------------- /conf/anongame_infos.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/conf/anongame_infos.conf -------------------------------------------------------------------------------- /conf/autoupdate.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/conf/autoupdate.conf -------------------------------------------------------------------------------- /conf/bnalias.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/conf/bnalias.conf -------------------------------------------------------------------------------- /conf/bnban.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/conf/bnban.conf -------------------------------------------------------------------------------- /conf/bnetd.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/conf/bnetd.conf.in -------------------------------------------------------------------------------- /conf/bnetd.conf.win32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/conf/bnetd.conf.win32 -------------------------------------------------------------------------------- /conf/bnetd_default_user.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/conf/bnetd_default_user.cdb -------------------------------------------------------------------------------- /conf/bnetd_default_user.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/conf/bnetd_default_user.plain -------------------------------------------------------------------------------- /conf/bnhelp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/conf/bnhelp.conf -------------------------------------------------------------------------------- /conf/bnissue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/conf/bnissue.txt -------------------------------------------------------------------------------- /conf/bnmaps.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/conf/bnmaps.conf -------------------------------------------------------------------------------- /conf/bnmotd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/conf/bnmotd.txt -------------------------------------------------------------------------------- /conf/bnxpcalc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/conf/bnxpcalc.conf -------------------------------------------------------------------------------- /conf/bnxplevel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/conf/bnxplevel.conf -------------------------------------------------------------------------------- /conf/channel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/conf/channel.conf -------------------------------------------------------------------------------- /conf/command_groups.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/conf/command_groups.conf -------------------------------------------------------------------------------- /conf/d2cs.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/conf/d2cs.conf.in -------------------------------------------------------------------------------- /conf/d2cs.conf.win32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/conf/d2cs.conf.win32 -------------------------------------------------------------------------------- /conf/d2dbs.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/conf/d2dbs.conf.in -------------------------------------------------------------------------------- /conf/d2dbs.conf.win32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/conf/d2dbs.conf.win32 -------------------------------------------------------------------------------- /conf/d2server.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/conf/d2server.ini -------------------------------------------------------------------------------- /conf/news.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/conf/news.txt -------------------------------------------------------------------------------- /conf/realm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/conf/realm.conf -------------------------------------------------------------------------------- /conf/sql_DB_layout.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/conf/sql_DB_layout.conf -------------------------------------------------------------------------------- /conf/sql_DB_layout2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/conf/sql_DB_layout2.conf -------------------------------------------------------------------------------- /conf/supportfile.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/conf/supportfile.conf -------------------------------------------------------------------------------- /conf/topics.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/conf/topics.conf -------------------------------------------------------------------------------- /conf/tournament.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/conf/tournament.conf -------------------------------------------------------------------------------- /conf/versioncheck.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/conf/versioncheck.conf -------------------------------------------------------------------------------- /docs/Compile.Instructions.Win32.Borland.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/docs/Compile.Instructions.Win32.Borland.txt -------------------------------------------------------------------------------- /docs/Compile.Instructions.Win32.Dev-C++.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/docs/Compile.Instructions.Win32.Dev-C++.txt -------------------------------------------------------------------------------- /docs/Compile.Instructions.Win32.VS.Net.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/docs/Compile.Instructions.Win32.VS.Net.txt -------------------------------------------------------------------------------- /docs/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/docs/INDEX -------------------------------------------------------------------------------- /docs/INSTALL.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/docs/INSTALL.unix -------------------------------------------------------------------------------- /docs/PORTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/docs/PORTS -------------------------------------------------------------------------------- /docs/README.fdwatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/docs/README.fdwatch -------------------------------------------------------------------------------- /docs/README.storage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/docs/README.storage -------------------------------------------------------------------------------- /docs/bnmotd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/docs/bnmotd.txt -------------------------------------------------------------------------------- /files/ad000001.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/files/ad000001.mng -------------------------------------------------------------------------------- /files/ad000001.smk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/files/ad000001.smk -------------------------------------------------------------------------------- /files/ad000002.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/files/ad000002.mng -------------------------------------------------------------------------------- /files/ad000003.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/files/ad000003.mng -------------------------------------------------------------------------------- /files/ad000004.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/files/ad000004.mng -------------------------------------------------------------------------------- /files/ad000075.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/files/ad000075.mng -------------------------------------------------------------------------------- /files/chathelp-war3-default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/files/chathelp-war3-default.txt -------------------------------------------------------------------------------- /files/chathelp-war3-enUS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/files/chathelp-war3-enUS.txt -------------------------------------------------------------------------------- /files/chathelp-war3-frFR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/files/chathelp-war3-frFR.txt -------------------------------------------------------------------------------- /files/chathelp-war3-ruRU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/files/chathelp-war3-ruRU.txt -------------------------------------------------------------------------------- /files/chathelp-war3-zhCN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/files/chathelp-war3-zhCN.txt -------------------------------------------------------------------------------- /files/newaccount-default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/files/newaccount-default.txt -------------------------------------------------------------------------------- /files/newaccount-enUS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/files/newaccount-enUS.txt -------------------------------------------------------------------------------- /files/newbie.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/files/newbie.save -------------------------------------------------------------------------------- /files/termsofservice-default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/files/termsofservice-default.txt -------------------------------------------------------------------------------- /files/termsofservice-enUS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/files/termsofservice-enUS.txt -------------------------------------------------------------------------------- /files/tos-unicode_default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/files/tos-unicode_default.txt -------------------------------------------------------------------------------- /files/tos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/files/tos.txt -------------------------------------------------------------------------------- /files/tos_default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/files/tos_default.txt -------------------------------------------------------------------------------- /man/bnbot.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/man/bnbot.1 -------------------------------------------------------------------------------- /man/bnchat.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/man/bnchat.1 -------------------------------------------------------------------------------- /man/bnetd.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/man/bnetd.1 -------------------------------------------------------------------------------- /man/bnetd.conf.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/man/bnetd.conf.5 -------------------------------------------------------------------------------- /man/bnftp.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/man/bnftp.1 -------------------------------------------------------------------------------- /man/bni2tga.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/man/bni2tga.1 -------------------------------------------------------------------------------- /man/bnibuild.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/man/bnibuild.1 -------------------------------------------------------------------------------- /man/bniextract.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/man/bniextract.1 -------------------------------------------------------------------------------- /man/bnilist.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/man/bnilist.1 -------------------------------------------------------------------------------- /man/bnpass.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/man/bnpass.1 -------------------------------------------------------------------------------- /man/bnpcap.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/man/bnpcap.1 -------------------------------------------------------------------------------- /man/bnproxy.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/man/bnproxy.1 -------------------------------------------------------------------------------- /man/bnstat.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/man/bnstat.1 -------------------------------------------------------------------------------- /man/bntext.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/man/bntext.5 -------------------------------------------------------------------------------- /man/bntrackd.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/man/bntrackd.1 -------------------------------------------------------------------------------- /man/tgainfo.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/man/tgainfo.1 -------------------------------------------------------------------------------- /scripts/S98bnetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/scripts/S98bnetd -------------------------------------------------------------------------------- /scripts/announce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/scripts/announce.sh -------------------------------------------------------------------------------- /scripts/bnetd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/scripts/bnetd.init -------------------------------------------------------------------------------- /scripts/bnetd.logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/scripts/bnetd.logrotate -------------------------------------------------------------------------------- /scripts/bnetmasq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/scripts/bnetmasq.sh -------------------------------------------------------------------------------- /scripts/convert_w3.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/scripts/convert_w3.pl -------------------------------------------------------------------------------- /scripts/cvs2cl.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/scripts/cvs2cl.pl -------------------------------------------------------------------------------- /scripts/flat2cdb.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/scripts/flat2cdb.pl -------------------------------------------------------------------------------- /scripts/fsgs2bnetd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/scripts/fsgs2bnetd.pl -------------------------------------------------------------------------------- /scripts/ladder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/scripts/ladder.py -------------------------------------------------------------------------------- /scripts/lastlogin.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/scripts/lastlogin.pl -------------------------------------------------------------------------------- /scripts/login_testusers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/scripts/login_testusers.sh -------------------------------------------------------------------------------- /scripts/make_testusers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/scripts/make_testusers.sh -------------------------------------------------------------------------------- /scripts/process.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/scripts/process.pl -------------------------------------------------------------------------------- /scripts/pvpgn_hash.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/scripts/pvpgn_hash.inc.php -------------------------------------------------------------------------------- /scripts/rc.bnetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/scripts/rc.bnetd -------------------------------------------------------------------------------- /scripts/reform.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/scripts/reform.awk -------------------------------------------------------------------------------- /scripts/sql/repairlevels.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/scripts/sql/repairlevels.pl -------------------------------------------------------------------------------- /scripts/storage/cdb2sql.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/scripts/storage/cdb2sql.pl -------------------------------------------------------------------------------- /scripts/storage/plain2sql.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/scripts/storage/plain2sql.pl -------------------------------------------------------------------------------- /scripts/tos.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/scripts/tos.bat -------------------------------------------------------------------------------- /scripts/tos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/scripts/tos.sh -------------------------------------------------------------------------------- /src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/Makefile.in -------------------------------------------------------------------------------- /src/autoconf/ansi2knr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/autoconf/ansi2knr.c -------------------------------------------------------------------------------- /src/autoconf/ccstdc.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/autoconf/ccstdc.m4 -------------------------------------------------------------------------------- /src/autoconf/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/autoconf/config.guess -------------------------------------------------------------------------------- /src/autoconf/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/autoconf/config.sub -------------------------------------------------------------------------------- /src/autoconf/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/autoconf/install-sh -------------------------------------------------------------------------------- /src/autoconf/mkdir-p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/autoconf/mkdir-p -------------------------------------------------------------------------------- /src/autoconf/mkdir.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/autoconf/mkdir.m4 -------------------------------------------------------------------------------- /src/autoconf/termios.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/autoconf/termios.m4 -------------------------------------------------------------------------------- /src/autoconf/winsz.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/autoconf/winsz.m4 -------------------------------------------------------------------------------- /src/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/autogen.sh -------------------------------------------------------------------------------- /src/bnetd/account.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/account.c -------------------------------------------------------------------------------- /src/bnetd/account.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/account.h -------------------------------------------------------------------------------- /src/bnetd/account_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/account_wrap.c -------------------------------------------------------------------------------- /src/bnetd/account_wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/account_wrap.h -------------------------------------------------------------------------------- /src/bnetd/adbanner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/adbanner.c -------------------------------------------------------------------------------- /src/bnetd/adbanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/adbanner.h -------------------------------------------------------------------------------- /src/bnetd/alias_command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/alias_command.c -------------------------------------------------------------------------------- /src/bnetd/alias_command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/alias_command.h -------------------------------------------------------------------------------- /src/bnetd/anongame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/anongame.c -------------------------------------------------------------------------------- /src/bnetd/anongame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/anongame.h -------------------------------------------------------------------------------- /src/bnetd/anongame_gameresult.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/anongame_gameresult.c -------------------------------------------------------------------------------- /src/bnetd/anongame_gameresult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/anongame_gameresult.h -------------------------------------------------------------------------------- /src/bnetd/anongame_infos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/anongame_infos.c -------------------------------------------------------------------------------- /src/bnetd/anongame_infos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/anongame_infos.h -------------------------------------------------------------------------------- /src/bnetd/anongame_maplists.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/anongame_maplists.c -------------------------------------------------------------------------------- /src/bnetd/anongame_maplists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/anongame_maplists.h -------------------------------------------------------------------------------- /src/bnetd/attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/attr.h -------------------------------------------------------------------------------- /src/bnetd/attrgroup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/attrgroup.c -------------------------------------------------------------------------------- /src/bnetd/attrgroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/attrgroup.h -------------------------------------------------------------------------------- /src/bnetd/attrlayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/attrlayer.c -------------------------------------------------------------------------------- /src/bnetd/attrlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/attrlayer.h -------------------------------------------------------------------------------- /src/bnetd/autoupdate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/autoupdate.c -------------------------------------------------------------------------------- /src/bnetd/autoupdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/autoupdate.h -------------------------------------------------------------------------------- /src/bnetd/bnetd_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/bnetd_log.c -------------------------------------------------------------------------------- /src/bnetd/bnetd_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/bnetd_log.h -------------------------------------------------------------------------------- /src/bnetd/channel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/channel.c -------------------------------------------------------------------------------- /src/bnetd/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/channel.h -------------------------------------------------------------------------------- /src/bnetd/channel_conv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/channel_conv.c -------------------------------------------------------------------------------- /src/bnetd/channel_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/channel_conv.h -------------------------------------------------------------------------------- /src/bnetd/character.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/character.c -------------------------------------------------------------------------------- /src/bnetd/character.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/character.h -------------------------------------------------------------------------------- /src/bnetd/clan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/clan.c -------------------------------------------------------------------------------- /src/bnetd/clan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/clan.h -------------------------------------------------------------------------------- /src/bnetd/cmdline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/cmdline.c -------------------------------------------------------------------------------- /src/bnetd/cmdline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/cmdline.h -------------------------------------------------------------------------------- /src/bnetd/command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/command.c -------------------------------------------------------------------------------- /src/bnetd/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/command.h -------------------------------------------------------------------------------- /src/bnetd/command_groups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/command_groups.c -------------------------------------------------------------------------------- /src/bnetd/command_groups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/command_groups.h -------------------------------------------------------------------------------- /src/bnetd/connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/connection.c -------------------------------------------------------------------------------- /src/bnetd/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/connection.h -------------------------------------------------------------------------------- /src/bnetd/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/file.c -------------------------------------------------------------------------------- /src/bnetd/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/file.h -------------------------------------------------------------------------------- /src/bnetd/file_cdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/file_cdb.c -------------------------------------------------------------------------------- /src/bnetd/file_cdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/file_cdb.h -------------------------------------------------------------------------------- /src/bnetd/file_plain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/file_plain.c -------------------------------------------------------------------------------- /src/bnetd/file_plain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/file_plain.h -------------------------------------------------------------------------------- /src/bnetd/friends.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/friends.c -------------------------------------------------------------------------------- /src/bnetd/friends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/friends.h -------------------------------------------------------------------------------- /src/bnetd/game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/game.c -------------------------------------------------------------------------------- /src/bnetd/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/game.h -------------------------------------------------------------------------------- /src/bnetd/game_conv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/game_conv.c -------------------------------------------------------------------------------- /src/bnetd/game_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/game_conv.h -------------------------------------------------------------------------------- /src/bnetd/handle_anongame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/handle_anongame.c -------------------------------------------------------------------------------- /src/bnetd/handle_anongame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/handle_anongame.h -------------------------------------------------------------------------------- /src/bnetd/handle_bnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/handle_bnet.c -------------------------------------------------------------------------------- /src/bnetd/handle_bnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/handle_bnet.h -------------------------------------------------------------------------------- /src/bnetd/handle_bot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/handle_bot.c -------------------------------------------------------------------------------- /src/bnetd/handle_bot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/handle_bot.h -------------------------------------------------------------------------------- /src/bnetd/handle_d2cs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/handle_d2cs.c -------------------------------------------------------------------------------- /src/bnetd/handle_d2cs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/handle_d2cs.h -------------------------------------------------------------------------------- /src/bnetd/handle_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/handle_file.c -------------------------------------------------------------------------------- /src/bnetd/handle_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/handle_file.h -------------------------------------------------------------------------------- /src/bnetd/handle_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/handle_init.c -------------------------------------------------------------------------------- /src/bnetd/handle_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/handle_init.h -------------------------------------------------------------------------------- /src/bnetd/handle_irc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/handle_irc.c -------------------------------------------------------------------------------- /src/bnetd/handle_irc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/handle_irc.h -------------------------------------------------------------------------------- /src/bnetd/handle_telnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/handle_telnet.c -------------------------------------------------------------------------------- /src/bnetd/handle_telnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/handle_telnet.h -------------------------------------------------------------------------------- /src/bnetd/handle_udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/handle_udp.c -------------------------------------------------------------------------------- /src/bnetd/handle_udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/handle_udp.h -------------------------------------------------------------------------------- /src/bnetd/handlers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/handlers.h -------------------------------------------------------------------------------- /src/bnetd/helpfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/helpfile.c -------------------------------------------------------------------------------- /src/bnetd/helpfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/helpfile.h -------------------------------------------------------------------------------- /src/bnetd/ipban.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/ipban.c -------------------------------------------------------------------------------- /src/bnetd/ipban.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/ipban.h -------------------------------------------------------------------------------- /src/bnetd/irc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/irc.c -------------------------------------------------------------------------------- /src/bnetd/irc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/irc.h -------------------------------------------------------------------------------- /src/bnetd/ladder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/ladder.c -------------------------------------------------------------------------------- /src/bnetd/ladder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/ladder.h -------------------------------------------------------------------------------- /src/bnetd/ladder_binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/ladder_binary.c -------------------------------------------------------------------------------- /src/bnetd/ladder_binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/ladder_binary.h -------------------------------------------------------------------------------- /src/bnetd/ladder_calc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/ladder_calc.c -------------------------------------------------------------------------------- /src/bnetd/ladder_calc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/ladder_calc.h -------------------------------------------------------------------------------- /src/bnetd/mail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/mail.c -------------------------------------------------------------------------------- /src/bnetd/mail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/mail.h -------------------------------------------------------------------------------- /src/bnetd/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/main.c -------------------------------------------------------------------------------- /src/bnetd/message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/message.c -------------------------------------------------------------------------------- /src/bnetd/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/message.h -------------------------------------------------------------------------------- /src/bnetd/news.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/news.c -------------------------------------------------------------------------------- /src/bnetd/news.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/news.h -------------------------------------------------------------------------------- /src/bnetd/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/output.c -------------------------------------------------------------------------------- /src/bnetd/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/output.h -------------------------------------------------------------------------------- /src/bnetd/prefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/prefs.c -------------------------------------------------------------------------------- /src/bnetd/prefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/prefs.h -------------------------------------------------------------------------------- /src/bnetd/quota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/quota.h -------------------------------------------------------------------------------- /src/bnetd/realm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/realm.c -------------------------------------------------------------------------------- /src/bnetd/realm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/realm.h -------------------------------------------------------------------------------- /src/bnetd/runprog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/runprog.c -------------------------------------------------------------------------------- /src/bnetd/runprog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/runprog.h -------------------------------------------------------------------------------- /src/bnetd/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/server.c -------------------------------------------------------------------------------- /src/bnetd/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/server.h -------------------------------------------------------------------------------- /src/bnetd/sql_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/sql_common.c -------------------------------------------------------------------------------- /src/bnetd/sql_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/sql_common.h -------------------------------------------------------------------------------- /src/bnetd/sql_dbcreator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/sql_dbcreator.c -------------------------------------------------------------------------------- /src/bnetd/sql_dbcreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/sql_dbcreator.h -------------------------------------------------------------------------------- /src/bnetd/sql_mysql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/sql_mysql.c -------------------------------------------------------------------------------- /src/bnetd/sql_mysql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/sql_mysql.h -------------------------------------------------------------------------------- /src/bnetd/sql_odbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/sql_odbc.c -------------------------------------------------------------------------------- /src/bnetd/sql_odbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/sql_odbc.h -------------------------------------------------------------------------------- /src/bnetd/sql_pgsql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/sql_pgsql.c -------------------------------------------------------------------------------- /src/bnetd/sql_pgsql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/sql_pgsql.h -------------------------------------------------------------------------------- /src/bnetd/sql_sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/sql_sqlite3.c -------------------------------------------------------------------------------- /src/bnetd/sql_sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/sql_sqlite3.h -------------------------------------------------------------------------------- /src/bnetd/storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/storage.c -------------------------------------------------------------------------------- /src/bnetd/storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/storage.h -------------------------------------------------------------------------------- /src/bnetd/storage_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/storage_file.c -------------------------------------------------------------------------------- /src/bnetd/storage_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/storage_file.h -------------------------------------------------------------------------------- /src/bnetd/storage_sql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/storage_sql.c -------------------------------------------------------------------------------- /src/bnetd/storage_sql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/storage_sql.h -------------------------------------------------------------------------------- /src/bnetd/storage_sql2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/storage_sql2.c -------------------------------------------------------------------------------- /src/bnetd/storage_sql2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/storage_sql2.h -------------------------------------------------------------------------------- /src/bnetd/support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/support.c -------------------------------------------------------------------------------- /src/bnetd/support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/support.h -------------------------------------------------------------------------------- /src/bnetd/team.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/team.c -------------------------------------------------------------------------------- /src/bnetd/team.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/team.h -------------------------------------------------------------------------------- /src/bnetd/tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/tick.c -------------------------------------------------------------------------------- /src/bnetd/tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/tick.h -------------------------------------------------------------------------------- /src/bnetd/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/timer.c -------------------------------------------------------------------------------- /src/bnetd/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/timer.h -------------------------------------------------------------------------------- /src/bnetd/topic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/topic.c -------------------------------------------------------------------------------- /src/bnetd/topic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/topic.h -------------------------------------------------------------------------------- /src/bnetd/tournament.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/tournament.c -------------------------------------------------------------------------------- /src/bnetd/tournament.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/tournament.h -------------------------------------------------------------------------------- /src/bnetd/tracker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/tracker.c -------------------------------------------------------------------------------- /src/bnetd/udptest_send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/udptest_send.c -------------------------------------------------------------------------------- /src/bnetd/udptest_send.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/udptest_send.h -------------------------------------------------------------------------------- /src/bnetd/versioncheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/versioncheck.c -------------------------------------------------------------------------------- /src/bnetd/versioncheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/versioncheck.h -------------------------------------------------------------------------------- /src/bnetd/watch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/watch.c -------------------------------------------------------------------------------- /src/bnetd/watch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnetd/watch.h -------------------------------------------------------------------------------- /src/bniutils/bni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bniutils/bni.c -------------------------------------------------------------------------------- /src/bniutils/bni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bniutils/bni.h -------------------------------------------------------------------------------- /src/bniutils/bni2tga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bniutils/bni2tga.c -------------------------------------------------------------------------------- /src/bniutils/bnibuild.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bniutils/bnibuild.c -------------------------------------------------------------------------------- /src/bniutils/bniextract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bniutils/bniextract.c -------------------------------------------------------------------------------- /src/bniutils/bnilist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bniutils/bnilist.c -------------------------------------------------------------------------------- /src/bniutils/fileio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bniutils/fileio.c -------------------------------------------------------------------------------- /src/bniutils/fileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bniutils/fileio.h -------------------------------------------------------------------------------- /src/bniutils/tga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bniutils/tga.c -------------------------------------------------------------------------------- /src/bniutils/tga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bniutils/tga.h -------------------------------------------------------------------------------- /src/bniutils/tgainfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bniutils/tgainfo.c -------------------------------------------------------------------------------- /src/bnpass/bnpass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnpass/bnpass.c -------------------------------------------------------------------------------- /src/bnpcap/.cvsignore: -------------------------------------------------------------------------------- 1 | tcpdumps 2 | -------------------------------------------------------------------------------- /src/bnpcap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnpcap/Makefile -------------------------------------------------------------------------------- /src/bnpcap/bnpcap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnpcap/bnpcap.c -------------------------------------------------------------------------------- /src/bnproxy/bnproxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnproxy/bnproxy.c -------------------------------------------------------------------------------- /src/bnproxy/virtconn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnproxy/virtconn.c -------------------------------------------------------------------------------- /src/bnproxy/virtconn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bnproxy/virtconn.h -------------------------------------------------------------------------------- /src/bntrackd/bntrackd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bntrackd/bntrackd.c -------------------------------------------------------------------------------- /src/bntrackd/servers.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/bntrackd/servers.xsl -------------------------------------------------------------------------------- /src/client/ansi_term.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/client/ansi_term.h -------------------------------------------------------------------------------- /src/client/bnbot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/client/bnbot.c -------------------------------------------------------------------------------- /src/client/bnchat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/client/bnchat.c -------------------------------------------------------------------------------- /src/client/bnftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/client/bnftp.c -------------------------------------------------------------------------------- /src/client/bnstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/client/bnstat.c -------------------------------------------------------------------------------- /src/client/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/client/client.c -------------------------------------------------------------------------------- /src/client/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/client/client.h -------------------------------------------------------------------------------- /src/client/client_connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/client/client_connect.c -------------------------------------------------------------------------------- /src/client/client_connect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/client/client_connect.h -------------------------------------------------------------------------------- /src/client/udptest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/client/udptest.c -------------------------------------------------------------------------------- /src/client/udptest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/client/udptest.h -------------------------------------------------------------------------------- /src/common/addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/addr.c -------------------------------------------------------------------------------- /src/common/addr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/addr.h -------------------------------------------------------------------------------- /src/common/anongame_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/anongame_protocol.h -------------------------------------------------------------------------------- /src/common/asnprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/asnprintf.c -------------------------------------------------------------------------------- /src/common/asnprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/asnprintf.h -------------------------------------------------------------------------------- /src/common/bn_type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/bn_type.c -------------------------------------------------------------------------------- /src/common/bn_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/bn_type.h -------------------------------------------------------------------------------- /src/common/bnet_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/bnet_protocol.h -------------------------------------------------------------------------------- /src/common/bnethash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/bnethash.c -------------------------------------------------------------------------------- /src/common/bnethash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/bnethash.h -------------------------------------------------------------------------------- /src/common/bnethashconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/bnethashconv.c -------------------------------------------------------------------------------- /src/common/bnethashconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/bnethashconv.h -------------------------------------------------------------------------------- /src/common/bnettime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/bnettime.c -------------------------------------------------------------------------------- /src/common/bnettime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/bnettime.h -------------------------------------------------------------------------------- /src/common/bot_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/bot_protocol.h -------------------------------------------------------------------------------- /src/common/cdbhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/cdbhash.h -------------------------------------------------------------------------------- /src/common/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/conf.c -------------------------------------------------------------------------------- /src/common/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/conf.h -------------------------------------------------------------------------------- /src/common/d2char_checksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/d2char_checksum.c -------------------------------------------------------------------------------- /src/common/d2char_checksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/d2char_checksum.h -------------------------------------------------------------------------------- /src/common/d2char_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/d2char_file.h -------------------------------------------------------------------------------- /src/common/d2game_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/d2game_protocol.h -------------------------------------------------------------------------------- /src/common/elist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/elist.h -------------------------------------------------------------------------------- /src/common/eventlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/eventlog.c -------------------------------------------------------------------------------- /src/common/eventlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/eventlog.h -------------------------------------------------------------------------------- /src/common/fdwatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/fdwatch.c -------------------------------------------------------------------------------- /src/common/fdwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/fdwatch.h -------------------------------------------------------------------------------- /src/common/fdwatch_epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/fdwatch_epoll.c -------------------------------------------------------------------------------- /src/common/fdwatch_epoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/fdwatch_epoll.h -------------------------------------------------------------------------------- /src/common/fdwatch_iocp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/fdwatch_iocp.c -------------------------------------------------------------------------------- /src/common/fdwatch_iocp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/fdwatch_iocp.h -------------------------------------------------------------------------------- /src/common/fdwatch_kqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/fdwatch_kqueue.c -------------------------------------------------------------------------------- /src/common/fdwatch_kqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/fdwatch_kqueue.h -------------------------------------------------------------------------------- /src/common/fdwatch_poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/fdwatch_poll.c -------------------------------------------------------------------------------- /src/common/fdwatch_poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/fdwatch_poll.h -------------------------------------------------------------------------------- /src/common/fdwatch_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/fdwatch_select.c -------------------------------------------------------------------------------- /src/common/fdwatch_select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/fdwatch_select.h -------------------------------------------------------------------------------- /src/common/field_sizes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/field_sizes.h -------------------------------------------------------------------------------- /src/common/file_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/file_protocol.h -------------------------------------------------------------------------------- /src/common/flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/flags.h -------------------------------------------------------------------------------- /src/common/give_up_root_privileges.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/give_up_root_privileges.c -------------------------------------------------------------------------------- /src/common/give_up_root_privileges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/give_up_root_privileges.h -------------------------------------------------------------------------------- /src/common/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/hashtable.c -------------------------------------------------------------------------------- /src/common/hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/hashtable.h -------------------------------------------------------------------------------- /src/common/hexdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/hexdump.c -------------------------------------------------------------------------------- /src/common/hexdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/hexdump.h -------------------------------------------------------------------------------- /src/common/init_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/init_protocol.h -------------------------------------------------------------------------------- /src/common/introtate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/introtate.h -------------------------------------------------------------------------------- /src/common/irc_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/irc_protocol.h -------------------------------------------------------------------------------- /src/common/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/list.c -------------------------------------------------------------------------------- /src/common/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/list.h -------------------------------------------------------------------------------- /src/common/lstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/lstr.h -------------------------------------------------------------------------------- /src/common/network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/network.c -------------------------------------------------------------------------------- /src/common/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/network.h -------------------------------------------------------------------------------- /src/common/packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/packet.c -------------------------------------------------------------------------------- /src/common/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/packet.h -------------------------------------------------------------------------------- /src/common/proginfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/proginfo.c -------------------------------------------------------------------------------- /src/common/proginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/proginfo.h -------------------------------------------------------------------------------- /src/common/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/queue.c -------------------------------------------------------------------------------- /src/common/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/queue.h -------------------------------------------------------------------------------- /src/common/rcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/rcm.c -------------------------------------------------------------------------------- /src/common/rcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/rcm.h -------------------------------------------------------------------------------- /src/common/rlimit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/rlimit.c -------------------------------------------------------------------------------- /src/common/rlimit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/rlimit.h -------------------------------------------------------------------------------- /src/common/setup_after.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/setup_after.h -------------------------------------------------------------------------------- /src/common/setup_before.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/setup_before.h -------------------------------------------------------------------------------- /src/common/tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/tag.c -------------------------------------------------------------------------------- /src/common/tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/tag.h -------------------------------------------------------------------------------- /src/common/token.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/token.c -------------------------------------------------------------------------------- /src/common/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/token.h -------------------------------------------------------------------------------- /src/common/tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/tracker.h -------------------------------------------------------------------------------- /src/common/trans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/trans.c -------------------------------------------------------------------------------- /src/common/trans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/trans.h -------------------------------------------------------------------------------- /src/common/udp_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/udp_protocol.h -------------------------------------------------------------------------------- /src/common/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/util.c -------------------------------------------------------------------------------- /src/common/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/util.h -------------------------------------------------------------------------------- /src/common/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/version.h -------------------------------------------------------------------------------- /src/common/xalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/xalloc.c -------------------------------------------------------------------------------- /src/common/xalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/xalloc.h -------------------------------------------------------------------------------- /src/common/xstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/xstr.c -------------------------------------------------------------------------------- /src/common/xstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/xstr.h -------------------------------------------------------------------------------- /src/common/xstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/xstring.c -------------------------------------------------------------------------------- /src/common/xstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/common/xstring.h -------------------------------------------------------------------------------- /src/compat/access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/access.h -------------------------------------------------------------------------------- /src/compat/char_bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/char_bit.h -------------------------------------------------------------------------------- /src/compat/difftime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/difftime.c -------------------------------------------------------------------------------- /src/compat/difftime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/difftime.h -------------------------------------------------------------------------------- /src/compat/exitstatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/exitstatus.h -------------------------------------------------------------------------------- /src/compat/gethostname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/gethostname.h -------------------------------------------------------------------------------- /src/compat/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/getopt.c -------------------------------------------------------------------------------- /src/compat/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/getopt.h -------------------------------------------------------------------------------- /src/compat/gettimeofday.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/gettimeofday.c -------------------------------------------------------------------------------- /src/compat/gettimeofday.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/gettimeofday.h -------------------------------------------------------------------------------- /src/compat/inet_aton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/inet_aton.c -------------------------------------------------------------------------------- /src/compat/inet_aton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/inet_aton.h -------------------------------------------------------------------------------- /src/compat/inet_ntoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/inet_ntoa.c -------------------------------------------------------------------------------- /src/compat/inet_ntoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/inet_ntoa.h -------------------------------------------------------------------------------- /src/compat/memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/memcpy.c -------------------------------------------------------------------------------- /src/compat/memcpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/memcpy.h -------------------------------------------------------------------------------- /src/compat/memmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/memmove.c -------------------------------------------------------------------------------- /src/compat/memmove.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/memmove.h -------------------------------------------------------------------------------- /src/compat/memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/memset.c -------------------------------------------------------------------------------- /src/compat/memset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/memset.h -------------------------------------------------------------------------------- /src/compat/mkdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/mkdir.h -------------------------------------------------------------------------------- /src/compat/mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/mmap.c -------------------------------------------------------------------------------- /src/compat/mmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/mmap.h -------------------------------------------------------------------------------- /src/compat/netinet_in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/netinet_in.h -------------------------------------------------------------------------------- /src/compat/pdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/pdir.c -------------------------------------------------------------------------------- /src/compat/pdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/pdir.h -------------------------------------------------------------------------------- /src/compat/psock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/psock.c -------------------------------------------------------------------------------- /src/compat/psock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/psock.h -------------------------------------------------------------------------------- /src/compat/read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/read.h -------------------------------------------------------------------------------- /src/compat/recv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/recv.h -------------------------------------------------------------------------------- /src/compat/rename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/rename.h -------------------------------------------------------------------------------- /src/compat/seek.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/seek.h -------------------------------------------------------------------------------- /src/compat/send.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/send.h -------------------------------------------------------------------------------- /src/compat/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/signal.h -------------------------------------------------------------------------------- /src/compat/snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/snprintf.c -------------------------------------------------------------------------------- /src/compat/snprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/snprintf.h -------------------------------------------------------------------------------- /src/compat/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/socket.h -------------------------------------------------------------------------------- /src/compat/statmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/statmacros.h -------------------------------------------------------------------------------- /src/compat/stdfileno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/stdfileno.h -------------------------------------------------------------------------------- /src/compat/strcasecmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/strcasecmp.c -------------------------------------------------------------------------------- /src/compat/strcasecmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/strcasecmp.h -------------------------------------------------------------------------------- /src/compat/strchr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/strchr.h -------------------------------------------------------------------------------- /src/compat/strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/strdup.c -------------------------------------------------------------------------------- /src/compat/strdup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/strdup.h -------------------------------------------------------------------------------- /src/compat/strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/strerror.c -------------------------------------------------------------------------------- /src/compat/strerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/strerror.h -------------------------------------------------------------------------------- /src/compat/strftime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/strftime.c -------------------------------------------------------------------------------- /src/compat/strftime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/strftime.h -------------------------------------------------------------------------------- /src/compat/strncasecmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/strncasecmp.c -------------------------------------------------------------------------------- /src/compat/strncasecmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/strncasecmp.h -------------------------------------------------------------------------------- /src/compat/strrchr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/strrchr.h -------------------------------------------------------------------------------- /src/compat/strsep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/strsep.c -------------------------------------------------------------------------------- /src/compat/strsep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/strsep.h -------------------------------------------------------------------------------- /src/compat/strtoul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/strtoul.c -------------------------------------------------------------------------------- /src/compat/strtoul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/strtoul.h -------------------------------------------------------------------------------- /src/compat/termios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/termios.h -------------------------------------------------------------------------------- /src/compat/uint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/uint.h -------------------------------------------------------------------------------- /src/compat/uname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/uname.c -------------------------------------------------------------------------------- /src/compat/uname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/uname.h -------------------------------------------------------------------------------- /src/compat/vargs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/vargs.h -------------------------------------------------------------------------------- /src/compat/vsnprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/vsnprintf.c -------------------------------------------------------------------------------- /src/compat/vsnprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/compat/vsnprintf.h -------------------------------------------------------------------------------- /src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/config.h.in -------------------------------------------------------------------------------- /src/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/configure -------------------------------------------------------------------------------- /src/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/configure.in -------------------------------------------------------------------------------- /src/d2cs/bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/bit.h -------------------------------------------------------------------------------- /src/d2cs/bnetd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/bnetd.c -------------------------------------------------------------------------------- /src/d2cs/bnetd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/bnetd.h -------------------------------------------------------------------------------- /src/d2cs/cmdline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/cmdline.c -------------------------------------------------------------------------------- /src/d2cs/cmdline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/cmdline.h -------------------------------------------------------------------------------- /src/d2cs/connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/connection.c -------------------------------------------------------------------------------- /src/d2cs/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/connection.h -------------------------------------------------------------------------------- /src/d2cs/d2charfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/d2charfile.c -------------------------------------------------------------------------------- /src/d2cs/d2charfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/d2charfile.h -------------------------------------------------------------------------------- /src/d2cs/d2charlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/d2charlist.c -------------------------------------------------------------------------------- /src/d2cs/d2charlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/d2charlist.h -------------------------------------------------------------------------------- /src/d2cs/d2cs_bnetd_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/d2cs_bnetd_protocol.h -------------------------------------------------------------------------------- /src/d2cs/d2cs_d2dbs_ladder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/d2cs_d2dbs_ladder.h -------------------------------------------------------------------------------- /src/d2cs/d2cs_d2gs_character.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/d2cs_d2gs_character.h -------------------------------------------------------------------------------- /src/d2cs/d2cs_d2gs_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/d2cs_d2gs_protocol.h -------------------------------------------------------------------------------- /src/d2cs/d2cs_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/d2cs_protocol.h -------------------------------------------------------------------------------- /src/d2cs/d2gs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/d2gs.c -------------------------------------------------------------------------------- /src/d2cs/d2gs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/d2gs.h -------------------------------------------------------------------------------- /src/d2cs/d2ladder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/d2ladder.c -------------------------------------------------------------------------------- /src/d2cs/d2ladder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/d2ladder.h -------------------------------------------------------------------------------- /src/d2cs/game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/game.c -------------------------------------------------------------------------------- /src/d2cs/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/game.h -------------------------------------------------------------------------------- /src/d2cs/gamequeue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/gamequeue.c -------------------------------------------------------------------------------- /src/d2cs/gamequeue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/gamequeue.h -------------------------------------------------------------------------------- /src/d2cs/handle_bnetd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/handle_bnetd.c -------------------------------------------------------------------------------- /src/d2cs/handle_bnetd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/handle_bnetd.h -------------------------------------------------------------------------------- /src/d2cs/handle_d2cs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/handle_d2cs.c -------------------------------------------------------------------------------- /src/d2cs/handle_d2cs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/handle_d2cs.h -------------------------------------------------------------------------------- /src/d2cs/handle_d2gs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/handle_d2gs.c -------------------------------------------------------------------------------- /src/d2cs/handle_d2gs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/handle_d2gs.h -------------------------------------------------------------------------------- /src/d2cs/handle_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/handle_init.c -------------------------------------------------------------------------------- /src/d2cs/handle_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/handle_init.h -------------------------------------------------------------------------------- /src/d2cs/handle_signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/handle_signal.c -------------------------------------------------------------------------------- /src/d2cs/handle_signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/handle_signal.h -------------------------------------------------------------------------------- /src/d2cs/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/main.c -------------------------------------------------------------------------------- /src/d2cs/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/net.c -------------------------------------------------------------------------------- /src/d2cs/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/net.h -------------------------------------------------------------------------------- /src/d2cs/prefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/prefs.c -------------------------------------------------------------------------------- /src/d2cs/prefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/prefs.h -------------------------------------------------------------------------------- /src/d2cs/s2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/s2s.c -------------------------------------------------------------------------------- /src/d2cs/s2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/s2s.h -------------------------------------------------------------------------------- /src/d2cs/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/server.c -------------------------------------------------------------------------------- /src/d2cs/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/server.h -------------------------------------------------------------------------------- /src/d2cs/serverqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/serverqueue.c -------------------------------------------------------------------------------- /src/d2cs/serverqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/serverqueue.h -------------------------------------------------------------------------------- /src/d2cs/setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/setup.h -------------------------------------------------------------------------------- /src/d2cs/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/d2cs/version.h -------------------------------------------------------------------------------- /src/mysql/config-win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/mysql/config-win.h -------------------------------------------------------------------------------- /src/mysql/decimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/mysql/decimal.h -------------------------------------------------------------------------------- /src/mysql/errmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/mysql/errmsg.h -------------------------------------------------------------------------------- /src/mysql/keycache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/mysql/keycache.h -------------------------------------------------------------------------------- /src/mysql/libmysql.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/mysql/libmysql.def -------------------------------------------------------------------------------- /src/mysql/libmysqld.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/mysql/libmysqld.def -------------------------------------------------------------------------------- /src/mysql/m_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/mysql/m_ctype.h -------------------------------------------------------------------------------- /src/mysql/m_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/mysql/m_string.h -------------------------------------------------------------------------------- /src/mysql/my_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/mysql/my_alloc.h -------------------------------------------------------------------------------- /src/mysql/my_attribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/mysql/my_attribute.h -------------------------------------------------------------------------------- /src/mysql/my_dbug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/mysql/my_dbug.h -------------------------------------------------------------------------------- /src/mysql/my_dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/mysql/my_dir.h -------------------------------------------------------------------------------- /src/mysql/my_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/mysql/my_getopt.h -------------------------------------------------------------------------------- /src/mysql/my_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/mysql/my_global.h -------------------------------------------------------------------------------- /src/mysql/my_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/mysql/my_list.h -------------------------------------------------------------------------------- /src/mysql/my_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/mysql/my_net.h -------------------------------------------------------------------------------- /src/mysql/my_no_pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/mysql/my_no_pthread.h -------------------------------------------------------------------------------- /src/mysql/my_pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/mysql/my_pthread.h -------------------------------------------------------------------------------- /src/mysql/my_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/mysql/my_sys.h -------------------------------------------------------------------------------- /src/mysql/my_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/mysql/my_xml.h -------------------------------------------------------------------------------- /src/mysql/mysql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/mysql/mysql.h -------------------------------------------------------------------------------- /src/mysql/mysql/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/mysql/mysql/plugin.h -------------------------------------------------------------------------------- /src/mysql/mysql_com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/mysql/mysql_com.h -------------------------------------------------------------------------------- /src/mysql/mysql_embed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/mysql/mysql_embed.h -------------------------------------------------------------------------------- /src/mysql/mysql_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/mysql/mysql_time.h -------------------------------------------------------------------------------- /src/mysql/mysql_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/mysql/mysql_version.h -------------------------------------------------------------------------------- /src/mysql/mysqld_ername.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/mysql/mysqld_ername.h -------------------------------------------------------------------------------- /src/mysql/mysqld_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/mysql/mysqld_error.h -------------------------------------------------------------------------------- /src/mysql/raid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/mysql/raid.h -------------------------------------------------------------------------------- /src/mysql/sql_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/mysql/sql_common.h -------------------------------------------------------------------------------- /src/mysql/sql_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/mysql/sql_state.h -------------------------------------------------------------------------------- /src/mysql/sslopt-case.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/mysql/sslopt-case.h -------------------------------------------------------------------------------- /src/mysql/sslopt-longopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/mysql/sslopt-longopts.h -------------------------------------------------------------------------------- /src/mysql/sslopt-vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/mysql/sslopt-vars.h -------------------------------------------------------------------------------- /src/mysql/typelib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/mysql/typelib.h -------------------------------------------------------------------------------- /src/tinycdb/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/tinycdb/ChangeLog -------------------------------------------------------------------------------- /src/tinycdb/cdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/tinycdb/cdb.c -------------------------------------------------------------------------------- /src/tinycdb/cdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/tinycdb/cdb.h -------------------------------------------------------------------------------- /src/tinycdb/cdb_find.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/tinycdb/cdb_find.c -------------------------------------------------------------------------------- /src/tinycdb/cdb_findnext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/tinycdb/cdb_findnext.c -------------------------------------------------------------------------------- /src/tinycdb/cdb_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/tinycdb/cdb_hash.c -------------------------------------------------------------------------------- /src/tinycdb/cdb_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/tinycdb/cdb_init.c -------------------------------------------------------------------------------- /src/tinycdb/cdb_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/tinycdb/cdb_int.h -------------------------------------------------------------------------------- /src/tinycdb/cdb_make.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/tinycdb/cdb_make.c -------------------------------------------------------------------------------- /src/tinycdb/cdb_make_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/tinycdb/cdb_make_add.c -------------------------------------------------------------------------------- /src/tinycdb/cdb_make_find.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/tinycdb/cdb_make_find.c -------------------------------------------------------------------------------- /src/tinycdb/cdb_make_put.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/tinycdb/cdb_make_put.c -------------------------------------------------------------------------------- /src/tinycdb/cdb_seek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/tinycdb/cdb_seek.c -------------------------------------------------------------------------------- /src/tinycdb/cdb_seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/tinycdb/cdb_seq.c -------------------------------------------------------------------------------- /src/tinycdb/cdb_unpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/tinycdb/cdb_unpack.c -------------------------------------------------------------------------------- /src/win32/configwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/win32/configwin.h -------------------------------------------------------------------------------- /src/win32/console_resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/win32/console_resource.h -------------------------------------------------------------------------------- /src/win32/console_resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/win32/console_resource.rc -------------------------------------------------------------------------------- /src/win32/d2cs_resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/win32/d2cs_resource.h -------------------------------------------------------------------------------- /src/win32/d2cs_resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/win32/d2cs_resource.rc -------------------------------------------------------------------------------- /src/win32/d2cs_winmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/win32/d2cs_winmain.c -------------------------------------------------------------------------------- /src/win32/d2dbs_resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/win32/d2dbs_resource.h -------------------------------------------------------------------------------- /src/win32/d2dbs_resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/win32/d2dbs_resource.rc -------------------------------------------------------------------------------- /src/win32/d2dbs_winmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/win32/d2dbs_winmain.c -------------------------------------------------------------------------------- /src/win32/logo01.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/win32/logo01.ico -------------------------------------------------------------------------------- /src/win32/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/win32/resource.h -------------------------------------------------------------------------------- /src/win32/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/win32/resource.rc -------------------------------------------------------------------------------- /src/win32/service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/win32/service.c -------------------------------------------------------------------------------- /src/win32/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/win32/service.h -------------------------------------------------------------------------------- /src/win32/winmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/win32/winmain.c -------------------------------------------------------------------------------- /src/win32/winmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/win32/winmain.h -------------------------------------------------------------------------------- /src/zlib/pvpgn_adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/zlib/pvpgn_adler32.c -------------------------------------------------------------------------------- /src/zlib/pvpgn_deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/zlib/pvpgn_deflate.c -------------------------------------------------------------------------------- /src/zlib/pvpgn_deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/zlib/pvpgn_deflate.h -------------------------------------------------------------------------------- /src/zlib/pvpgn_trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/zlib/pvpgn_trees.c -------------------------------------------------------------------------------- /src/zlib/pvpgn_trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/zlib/pvpgn_trees.h -------------------------------------------------------------------------------- /src/zlib/pvpgn_zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/zlib/pvpgn_zconf.h -------------------------------------------------------------------------------- /src/zlib/pvpgn_zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/zlib/pvpgn_zlib.h -------------------------------------------------------------------------------- /src/zlib/pvpgn_zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/zlib/pvpgn_zutil.c -------------------------------------------------------------------------------- /src/zlib/pvpgn_zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/zlib/pvpgn_zutil.h -------------------------------------------------------------------------------- /src/zlib/zlib_license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/src/zlib/zlib_license.html -------------------------------------------------------------------------------- /version-history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesseract2048/pvpgn/HEAD/version-history.txt --------------------------------------------------------------------------------