├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── api-data ├── accente.txt ├── correct.txt ├── cp437.txt ├── cp737-samples.txt ├── incorrect.txt ├── large.txt ├── latest-hi.txt ├── mockprox.exe ├── mockprox.go └── reply.txt ├── codepage └── cp737-greek │ ├── CHARSET.COM │ ├── ERGOGR.COM │ ├── FONTGRK.F14 │ ├── FONTGRK.F16 │ ├── FONTGRK.F8 │ └── GREEK.BAT ├── doschgpt-code ├── .gitignore ├── MAKEFILE ├── PTACH.exe ├── dbgserial.cpp ├── dbgserial.h ├── doschgpt.cfg ├── doschgpt.cpp ├── network.cpp ├── network.h ├── setenv.bat ├── sound.cpp ├── sound.h ├── speech.cpp ├── speech.h ├── textio.cpp ├── textio.h ├── utf2cp.cpp ├── utf2cp.h ├── utfcp437.cpp ├── utfcp437.h ├── utfcp737.cpp └── utfcp737.h ├── images ├── dos-chgpt-architecture.drawio ├── dos-chgpt-architecture.png ├── dos-chgpt-https.drawio ├── dos-chgpt-https.png ├── doschgpt-5155-front-start.jpg ├── doschgpt-5155-front-top.jpg ├── doschgpt-5155-front-using.jpg ├── doschgpt-create-exe.png ├── doschgpt-front-combined.jpg ├── doschgpt-mock-proxy.png ├── doschgpt-ollama.jpg └── doschgpt-vbox.png ├── mtcpsrc ├── 00README.TXT ├── APPS │ ├── DHCP │ │ ├── DHCP.CFG │ │ ├── DHCP.CPP │ │ ├── DHCP.H │ │ └── MAKEFILE │ ├── DNSTEST │ │ ├── DNS.CFG │ │ ├── DNSTEST.CPP │ │ └── MAKEFILE │ ├── FTP │ │ ├── FTP.CFG │ │ ├── FTP.CPP │ │ └── MAKEFILE │ ├── FTPSRV │ │ ├── FTPCL.CPP │ │ ├── FTPCL.H │ │ ├── FTPSRV.CFG │ │ ├── FTPSRV.CPP │ │ ├── FTPSRV.H │ │ ├── FTPUSR.CPP │ │ ├── FTPUSR.H │ │ └── MAKEFILE │ ├── HTGET │ │ ├── HTGET.CFG │ │ ├── HTGET.CPP │ │ └── MAKEFILE │ ├── IRCJR │ │ ├── IRC.CFG │ │ ├── IRC.CPP │ │ ├── IRCJR.H │ │ ├── MAKEFILE │ │ ├── SCREEN.CPP │ │ ├── SCREEN.H │ │ ├── SESSION.CPP │ │ └── SESSION.H │ ├── NC │ │ ├── MAKEFILE │ │ ├── NC.CFG │ │ └── NC.CPP │ ├── NETDRV │ │ ├── BPB.ASM │ │ ├── CHKSUM_TEST.CPP │ │ ├── MAKEFILE │ │ ├── NETDRV.CFG │ │ ├── NETDRV.CPP │ │ ├── PKT.ASM │ │ ├── RAMDISK.ASM │ │ ├── REQHDR.H │ │ ├── RH.ASM │ │ ├── SHARED.ASM │ │ ├── SHARED.H │ │ ├── SIMPLE.ASM │ │ └── fixdate.sh │ ├── PING │ │ ├── MAKEFILE │ │ ├── PING.CFG │ │ └── PING.CPP │ ├── PKTTOOL │ │ ├── MAKEFILE │ │ ├── PKTTOOL.CFG │ │ └── PKTTOOL.CPP │ ├── SAMPLE │ │ ├── MAKEFILE │ │ ├── SAMPLE.CFG │ │ └── SAMPLE.CPP │ ├── SNTP │ │ ├── MAKEFILE │ │ ├── SNTP.CFG │ │ └── SNTP.CPP │ ├── SPDTEST │ │ ├── MAKEFILE │ │ ├── SPDTEST.CFG │ │ └── SPDTEST.CPP │ └── TELNET │ │ ├── GLOBALS.H │ │ ├── KEYS.CPP │ │ ├── KEYS.H │ │ ├── MAKEFILE │ │ ├── TELNET.CFG │ │ ├── TELNET.CPP │ │ ├── TELNETSC.CPP │ │ ├── TELNETSC.H │ │ ├── YMODEM.CPP │ │ └── YMODEM.H ├── COPYING.TXT ├── INCLUDE │ ├── IRC.H │ ├── SNTP.H │ ├── TELNET.H │ └── UNICODE.H ├── TCPINC │ ├── ARP.H │ ├── DNS.H │ ├── ETH.H │ ├── ETHTYPE.H │ ├── GLOBAL.CFG │ ├── INLINES.H │ ├── IP.H │ ├── IPTYPE.H │ ├── IPV6.H │ ├── PACKET.H │ ├── RINGBUF.H │ ├── SNTPLIB.H │ ├── TCP.H │ ├── TCPSOCKM.H │ ├── TIMER.H │ ├── TRACE.H │ ├── TYPES.H │ ├── UDP.H │ └── UTILS.H ├── TCPLIB │ ├── ARP.CPP │ ├── DNS.CPP │ ├── ETH.CPP │ ├── ETHTYPE.CPP │ ├── IP.CPP │ ├── IPASM.ASM │ ├── IPTYPE.CPP │ ├── PACKET.CPP │ ├── SNTPLIB.CPP │ ├── TCP.CPP │ ├── TCPSOCKM.CPP │ ├── TIMER.CPP │ ├── TRACE.CPP │ ├── UDP.CPP │ ├── UNICODE.CPP │ └── UTILS.CPP ├── UTILS │ ├── MAKEFILE │ └── PATCH.CPP └── developers.pdf └── releases ├── sbaitso ├── Blaster.drv ├── Read.exe ├── Remove.exe └── Sbtalker.exe ├── v0.1 ├── doschgpt.exe └── doschgpt.ini ├── v0.10 ├── doschgpt.exe └── doschgpt.ini ├── v0.11 ├── doschgpt.exe ├── doschgpt.ini └── hf.ini ├── v0.12 ├── doschgpt.exe ├── doschgpt.ini └── hf.ini ├── v0.13 ├── doschgpt.exe ├── doschgpt.ini └── hf.ini ├── v0.14 ├── doschgpt.exe ├── doschgpt.ini └── hf.ini ├── v0.15 ├── doschgpt.exe ├── doschgpt.ini └── hf.ini ├── v0.16 ├── doschgpt.exe ├── doschgpt.ini └── hf.ini ├── v0.17 ├── doschgpt.exe ├── doschgpt.ini └── hf.ini ├── v0.18 ├── doschgpt.exe ├── doschgpt.ini ├── hf.ini └── ollama.ini ├── v0.19 ├── doschgpt.exe ├── doschgpt.ini ├── hf.ini └── ollama.ini ├── v0.2 ├── doschgpt.exe └── doschgpt.ini ├── v0.20 ├── doschgpt.exe ├── doschgpt.ini ├── hf.ini └── ollama.ini ├── v0.21 ├── doschgpt.exe ├── doschgpt.ini ├── hf.ini └── ollama.ini ├── v0.22 ├── doschgpt.exe ├── doschgpt.ini ├── hf.ini └── ollama.ini ├── v0.3 ├── doschgpt.exe └── doschgpt.ini ├── v0.4 ├── doschgpt.exe └── doschgpt.ini ├── v0.5 ├── doschgpt.exe └── doschgpt.ini ├── v0.6 ├── doschgpt.exe └── doschgpt.ini ├── v0.7 ├── doschgpt.exe └── doschgpt.ini ├── v0.8 ├── doschgpt.exe └── doschgpt.ini └── v0.9 ├── doschgpt.exe └── doschgpt.ini /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/README.md -------------------------------------------------------------------------------- /api-data/accente.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/api-data/accente.txt -------------------------------------------------------------------------------- /api-data/correct.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/api-data/correct.txt -------------------------------------------------------------------------------- /api-data/cp437.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/api-data/cp437.txt -------------------------------------------------------------------------------- /api-data/cp737-samples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/api-data/cp737-samples.txt -------------------------------------------------------------------------------- /api-data/incorrect.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/api-data/incorrect.txt -------------------------------------------------------------------------------- /api-data/large.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/api-data/large.txt -------------------------------------------------------------------------------- /api-data/latest-hi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/api-data/latest-hi.txt -------------------------------------------------------------------------------- /api-data/mockprox.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/api-data/mockprox.exe -------------------------------------------------------------------------------- /api-data/mockprox.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/api-data/mockprox.go -------------------------------------------------------------------------------- /api-data/reply.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/api-data/reply.txt -------------------------------------------------------------------------------- /codepage/cp737-greek/CHARSET.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/codepage/cp737-greek/CHARSET.COM -------------------------------------------------------------------------------- /codepage/cp737-greek/ERGOGR.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/codepage/cp737-greek/ERGOGR.COM -------------------------------------------------------------------------------- /codepage/cp737-greek/FONTGRK.F14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/codepage/cp737-greek/FONTGRK.F14 -------------------------------------------------------------------------------- /codepage/cp737-greek/FONTGRK.F16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/codepage/cp737-greek/FONTGRK.F16 -------------------------------------------------------------------------------- /codepage/cp737-greek/FONTGRK.F8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/codepage/cp737-greek/FONTGRK.F8 -------------------------------------------------------------------------------- /codepage/cp737-greek/GREEK.BAT: -------------------------------------------------------------------------------- 1 | @echo off 2 | charset fontgrk 3 | ergogr.com 4 | echo. 5 | -------------------------------------------------------------------------------- /doschgpt-code/.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | *.ini -------------------------------------------------------------------------------- /doschgpt-code/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/doschgpt-code/MAKEFILE -------------------------------------------------------------------------------- /doschgpt-code/PTACH.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/doschgpt-code/PTACH.exe -------------------------------------------------------------------------------- /doschgpt-code/dbgserial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/doschgpt-code/dbgserial.cpp -------------------------------------------------------------------------------- /doschgpt-code/dbgserial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/doschgpt-code/dbgserial.h -------------------------------------------------------------------------------- /doschgpt-code/doschgpt.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/doschgpt-code/doschgpt.cfg -------------------------------------------------------------------------------- /doschgpt-code/doschgpt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/doschgpt-code/doschgpt.cpp -------------------------------------------------------------------------------- /doschgpt-code/network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/doschgpt-code/network.cpp -------------------------------------------------------------------------------- /doschgpt-code/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/doschgpt-code/network.h -------------------------------------------------------------------------------- /doschgpt-code/setenv.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/doschgpt-code/setenv.bat -------------------------------------------------------------------------------- /doschgpt-code/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/doschgpt-code/sound.cpp -------------------------------------------------------------------------------- /doschgpt-code/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/doschgpt-code/sound.h -------------------------------------------------------------------------------- /doschgpt-code/speech.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/doschgpt-code/speech.cpp -------------------------------------------------------------------------------- /doschgpt-code/speech.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/doschgpt-code/speech.h -------------------------------------------------------------------------------- /doschgpt-code/textio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/doschgpt-code/textio.cpp -------------------------------------------------------------------------------- /doschgpt-code/textio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/doschgpt-code/textio.h -------------------------------------------------------------------------------- /doschgpt-code/utf2cp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/doschgpt-code/utf2cp.cpp -------------------------------------------------------------------------------- /doschgpt-code/utf2cp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/doschgpt-code/utf2cp.h -------------------------------------------------------------------------------- /doschgpt-code/utfcp437.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/doschgpt-code/utfcp437.cpp -------------------------------------------------------------------------------- /doschgpt-code/utfcp437.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/doschgpt-code/utfcp437.h -------------------------------------------------------------------------------- /doschgpt-code/utfcp737.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/doschgpt-code/utfcp737.cpp -------------------------------------------------------------------------------- /doschgpt-code/utfcp737.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/doschgpt-code/utfcp737.h -------------------------------------------------------------------------------- /images/dos-chgpt-architecture.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/images/dos-chgpt-architecture.drawio -------------------------------------------------------------------------------- /images/dos-chgpt-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/images/dos-chgpt-architecture.png -------------------------------------------------------------------------------- /images/dos-chgpt-https.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/images/dos-chgpt-https.drawio -------------------------------------------------------------------------------- /images/dos-chgpt-https.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/images/dos-chgpt-https.png -------------------------------------------------------------------------------- /images/doschgpt-5155-front-start.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/images/doschgpt-5155-front-start.jpg -------------------------------------------------------------------------------- /images/doschgpt-5155-front-top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/images/doschgpt-5155-front-top.jpg -------------------------------------------------------------------------------- /images/doschgpt-5155-front-using.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/images/doschgpt-5155-front-using.jpg -------------------------------------------------------------------------------- /images/doschgpt-create-exe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/images/doschgpt-create-exe.png -------------------------------------------------------------------------------- /images/doschgpt-front-combined.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/images/doschgpt-front-combined.jpg -------------------------------------------------------------------------------- /images/doschgpt-mock-proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/images/doschgpt-mock-proxy.png -------------------------------------------------------------------------------- /images/doschgpt-ollama.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/images/doschgpt-ollama.jpg -------------------------------------------------------------------------------- /images/doschgpt-vbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/images/doschgpt-vbox.png -------------------------------------------------------------------------------- /mtcpsrc/00README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/00README.TXT -------------------------------------------------------------------------------- /mtcpsrc/APPS/DHCP/DHCP.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/DHCP/DHCP.CFG -------------------------------------------------------------------------------- /mtcpsrc/APPS/DHCP/DHCP.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/DHCP/DHCP.CPP -------------------------------------------------------------------------------- /mtcpsrc/APPS/DHCP/DHCP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/DHCP/DHCP.H -------------------------------------------------------------------------------- /mtcpsrc/APPS/DHCP/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/DHCP/MAKEFILE -------------------------------------------------------------------------------- /mtcpsrc/APPS/DNSTEST/DNS.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/DNSTEST/DNS.CFG -------------------------------------------------------------------------------- /mtcpsrc/APPS/DNSTEST/DNSTEST.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/DNSTEST/DNSTEST.CPP -------------------------------------------------------------------------------- /mtcpsrc/APPS/DNSTEST/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/DNSTEST/MAKEFILE -------------------------------------------------------------------------------- /mtcpsrc/APPS/FTP/FTP.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/FTP/FTP.CFG -------------------------------------------------------------------------------- /mtcpsrc/APPS/FTP/FTP.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/FTP/FTP.CPP -------------------------------------------------------------------------------- /mtcpsrc/APPS/FTP/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/FTP/MAKEFILE -------------------------------------------------------------------------------- /mtcpsrc/APPS/FTPSRV/FTPCL.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/FTPSRV/FTPCL.CPP -------------------------------------------------------------------------------- /mtcpsrc/APPS/FTPSRV/FTPCL.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/FTPSRV/FTPCL.H -------------------------------------------------------------------------------- /mtcpsrc/APPS/FTPSRV/FTPSRV.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/FTPSRV/FTPSRV.CFG -------------------------------------------------------------------------------- /mtcpsrc/APPS/FTPSRV/FTPSRV.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/FTPSRV/FTPSRV.CPP -------------------------------------------------------------------------------- /mtcpsrc/APPS/FTPSRV/FTPSRV.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/FTPSRV/FTPSRV.H -------------------------------------------------------------------------------- /mtcpsrc/APPS/FTPSRV/FTPUSR.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/FTPSRV/FTPUSR.CPP -------------------------------------------------------------------------------- /mtcpsrc/APPS/FTPSRV/FTPUSR.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/FTPSRV/FTPUSR.H -------------------------------------------------------------------------------- /mtcpsrc/APPS/FTPSRV/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/FTPSRV/MAKEFILE -------------------------------------------------------------------------------- /mtcpsrc/APPS/HTGET/HTGET.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/HTGET/HTGET.CFG -------------------------------------------------------------------------------- /mtcpsrc/APPS/HTGET/HTGET.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/HTGET/HTGET.CPP -------------------------------------------------------------------------------- /mtcpsrc/APPS/HTGET/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/HTGET/MAKEFILE -------------------------------------------------------------------------------- /mtcpsrc/APPS/IRCJR/IRC.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/IRCJR/IRC.CFG -------------------------------------------------------------------------------- /mtcpsrc/APPS/IRCJR/IRC.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/IRCJR/IRC.CPP -------------------------------------------------------------------------------- /mtcpsrc/APPS/IRCJR/IRCJR.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/IRCJR/IRCJR.H -------------------------------------------------------------------------------- /mtcpsrc/APPS/IRCJR/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/IRCJR/MAKEFILE -------------------------------------------------------------------------------- /mtcpsrc/APPS/IRCJR/SCREEN.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/IRCJR/SCREEN.CPP -------------------------------------------------------------------------------- /mtcpsrc/APPS/IRCJR/SCREEN.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/IRCJR/SCREEN.H -------------------------------------------------------------------------------- /mtcpsrc/APPS/IRCJR/SESSION.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/IRCJR/SESSION.CPP -------------------------------------------------------------------------------- /mtcpsrc/APPS/IRCJR/SESSION.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/IRCJR/SESSION.H -------------------------------------------------------------------------------- /mtcpsrc/APPS/NC/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/NC/MAKEFILE -------------------------------------------------------------------------------- /mtcpsrc/APPS/NC/NC.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/NC/NC.CFG -------------------------------------------------------------------------------- /mtcpsrc/APPS/NC/NC.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/NC/NC.CPP -------------------------------------------------------------------------------- /mtcpsrc/APPS/NETDRV/BPB.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/NETDRV/BPB.ASM -------------------------------------------------------------------------------- /mtcpsrc/APPS/NETDRV/CHKSUM_TEST.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/NETDRV/CHKSUM_TEST.CPP -------------------------------------------------------------------------------- /mtcpsrc/APPS/NETDRV/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/NETDRV/MAKEFILE -------------------------------------------------------------------------------- /mtcpsrc/APPS/NETDRV/NETDRV.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/NETDRV/NETDRV.CFG -------------------------------------------------------------------------------- /mtcpsrc/APPS/NETDRV/NETDRV.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/NETDRV/NETDRV.CPP -------------------------------------------------------------------------------- /mtcpsrc/APPS/NETDRV/PKT.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/NETDRV/PKT.ASM -------------------------------------------------------------------------------- /mtcpsrc/APPS/NETDRV/RAMDISK.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/NETDRV/RAMDISK.ASM -------------------------------------------------------------------------------- /mtcpsrc/APPS/NETDRV/REQHDR.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/NETDRV/REQHDR.H -------------------------------------------------------------------------------- /mtcpsrc/APPS/NETDRV/RH.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/NETDRV/RH.ASM -------------------------------------------------------------------------------- /mtcpsrc/APPS/NETDRV/SHARED.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/NETDRV/SHARED.ASM -------------------------------------------------------------------------------- /mtcpsrc/APPS/NETDRV/SHARED.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/NETDRV/SHARED.H -------------------------------------------------------------------------------- /mtcpsrc/APPS/NETDRV/SIMPLE.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/NETDRV/SIMPLE.ASM -------------------------------------------------------------------------------- /mtcpsrc/APPS/NETDRV/fixdate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/NETDRV/fixdate.sh -------------------------------------------------------------------------------- /mtcpsrc/APPS/PING/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/PING/MAKEFILE -------------------------------------------------------------------------------- /mtcpsrc/APPS/PING/PING.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/PING/PING.CFG -------------------------------------------------------------------------------- /mtcpsrc/APPS/PING/PING.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/PING/PING.CPP -------------------------------------------------------------------------------- /mtcpsrc/APPS/PKTTOOL/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/PKTTOOL/MAKEFILE -------------------------------------------------------------------------------- /mtcpsrc/APPS/PKTTOOL/PKTTOOL.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/PKTTOOL/PKTTOOL.CFG -------------------------------------------------------------------------------- /mtcpsrc/APPS/PKTTOOL/PKTTOOL.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/PKTTOOL/PKTTOOL.CPP -------------------------------------------------------------------------------- /mtcpsrc/APPS/SAMPLE/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/SAMPLE/MAKEFILE -------------------------------------------------------------------------------- /mtcpsrc/APPS/SAMPLE/SAMPLE.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/SAMPLE/SAMPLE.CFG -------------------------------------------------------------------------------- /mtcpsrc/APPS/SAMPLE/SAMPLE.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/SAMPLE/SAMPLE.CPP -------------------------------------------------------------------------------- /mtcpsrc/APPS/SNTP/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/SNTP/MAKEFILE -------------------------------------------------------------------------------- /mtcpsrc/APPS/SNTP/SNTP.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/SNTP/SNTP.CFG -------------------------------------------------------------------------------- /mtcpsrc/APPS/SNTP/SNTP.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/SNTP/SNTP.CPP -------------------------------------------------------------------------------- /mtcpsrc/APPS/SPDTEST/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/SPDTEST/MAKEFILE -------------------------------------------------------------------------------- /mtcpsrc/APPS/SPDTEST/SPDTEST.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/SPDTEST/SPDTEST.CFG -------------------------------------------------------------------------------- /mtcpsrc/APPS/SPDTEST/SPDTEST.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/SPDTEST/SPDTEST.CPP -------------------------------------------------------------------------------- /mtcpsrc/APPS/TELNET/GLOBALS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/TELNET/GLOBALS.H -------------------------------------------------------------------------------- /mtcpsrc/APPS/TELNET/KEYS.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/TELNET/KEYS.CPP -------------------------------------------------------------------------------- /mtcpsrc/APPS/TELNET/KEYS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/TELNET/KEYS.H -------------------------------------------------------------------------------- /mtcpsrc/APPS/TELNET/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/TELNET/MAKEFILE -------------------------------------------------------------------------------- /mtcpsrc/APPS/TELNET/TELNET.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/TELNET/TELNET.CFG -------------------------------------------------------------------------------- /mtcpsrc/APPS/TELNET/TELNET.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/TELNET/TELNET.CPP -------------------------------------------------------------------------------- /mtcpsrc/APPS/TELNET/TELNETSC.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/TELNET/TELNETSC.CPP -------------------------------------------------------------------------------- /mtcpsrc/APPS/TELNET/TELNETSC.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/TELNET/TELNETSC.H -------------------------------------------------------------------------------- /mtcpsrc/APPS/TELNET/YMODEM.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/TELNET/YMODEM.CPP -------------------------------------------------------------------------------- /mtcpsrc/APPS/TELNET/YMODEM.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/APPS/TELNET/YMODEM.H -------------------------------------------------------------------------------- /mtcpsrc/COPYING.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/COPYING.TXT -------------------------------------------------------------------------------- /mtcpsrc/INCLUDE/IRC.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/INCLUDE/IRC.H -------------------------------------------------------------------------------- /mtcpsrc/INCLUDE/SNTP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/INCLUDE/SNTP.H -------------------------------------------------------------------------------- /mtcpsrc/INCLUDE/TELNET.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/INCLUDE/TELNET.H -------------------------------------------------------------------------------- /mtcpsrc/INCLUDE/UNICODE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/INCLUDE/UNICODE.H -------------------------------------------------------------------------------- /mtcpsrc/TCPINC/ARP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/TCPINC/ARP.H -------------------------------------------------------------------------------- /mtcpsrc/TCPINC/DNS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/TCPINC/DNS.H -------------------------------------------------------------------------------- /mtcpsrc/TCPINC/ETH.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/TCPINC/ETH.H -------------------------------------------------------------------------------- /mtcpsrc/TCPINC/ETHTYPE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/TCPINC/ETHTYPE.H -------------------------------------------------------------------------------- /mtcpsrc/TCPINC/GLOBAL.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/TCPINC/GLOBAL.CFG -------------------------------------------------------------------------------- /mtcpsrc/TCPINC/INLINES.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/TCPINC/INLINES.H -------------------------------------------------------------------------------- /mtcpsrc/TCPINC/IP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/TCPINC/IP.H -------------------------------------------------------------------------------- /mtcpsrc/TCPINC/IPTYPE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/TCPINC/IPTYPE.H -------------------------------------------------------------------------------- /mtcpsrc/TCPINC/IPV6.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/TCPINC/IPV6.H -------------------------------------------------------------------------------- /mtcpsrc/TCPINC/PACKET.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/TCPINC/PACKET.H -------------------------------------------------------------------------------- /mtcpsrc/TCPINC/RINGBUF.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/TCPINC/RINGBUF.H -------------------------------------------------------------------------------- /mtcpsrc/TCPINC/SNTPLIB.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/TCPINC/SNTPLIB.H -------------------------------------------------------------------------------- /mtcpsrc/TCPINC/TCP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/TCPINC/TCP.H -------------------------------------------------------------------------------- /mtcpsrc/TCPINC/TCPSOCKM.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/TCPINC/TCPSOCKM.H -------------------------------------------------------------------------------- /mtcpsrc/TCPINC/TIMER.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/TCPINC/TIMER.H -------------------------------------------------------------------------------- /mtcpsrc/TCPINC/TRACE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/TCPINC/TRACE.H -------------------------------------------------------------------------------- /mtcpsrc/TCPINC/TYPES.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/TCPINC/TYPES.H -------------------------------------------------------------------------------- /mtcpsrc/TCPINC/UDP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/TCPINC/UDP.H -------------------------------------------------------------------------------- /mtcpsrc/TCPINC/UTILS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/TCPINC/UTILS.H -------------------------------------------------------------------------------- /mtcpsrc/TCPLIB/ARP.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/TCPLIB/ARP.CPP -------------------------------------------------------------------------------- /mtcpsrc/TCPLIB/DNS.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/TCPLIB/DNS.CPP -------------------------------------------------------------------------------- /mtcpsrc/TCPLIB/ETH.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/TCPLIB/ETH.CPP -------------------------------------------------------------------------------- /mtcpsrc/TCPLIB/ETHTYPE.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/TCPLIB/ETHTYPE.CPP -------------------------------------------------------------------------------- /mtcpsrc/TCPLIB/IP.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/TCPLIB/IP.CPP -------------------------------------------------------------------------------- /mtcpsrc/TCPLIB/IPASM.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/TCPLIB/IPASM.ASM -------------------------------------------------------------------------------- /mtcpsrc/TCPLIB/IPTYPE.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/TCPLIB/IPTYPE.CPP -------------------------------------------------------------------------------- /mtcpsrc/TCPLIB/PACKET.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/TCPLIB/PACKET.CPP -------------------------------------------------------------------------------- /mtcpsrc/TCPLIB/SNTPLIB.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/TCPLIB/SNTPLIB.CPP -------------------------------------------------------------------------------- /mtcpsrc/TCPLIB/TCP.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/TCPLIB/TCP.CPP -------------------------------------------------------------------------------- /mtcpsrc/TCPLIB/TCPSOCKM.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/TCPLIB/TCPSOCKM.CPP -------------------------------------------------------------------------------- /mtcpsrc/TCPLIB/TIMER.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/TCPLIB/TIMER.CPP -------------------------------------------------------------------------------- /mtcpsrc/TCPLIB/TRACE.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/TCPLIB/TRACE.CPP -------------------------------------------------------------------------------- /mtcpsrc/TCPLIB/UDP.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/TCPLIB/UDP.CPP -------------------------------------------------------------------------------- /mtcpsrc/TCPLIB/UNICODE.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/TCPLIB/UNICODE.CPP -------------------------------------------------------------------------------- /mtcpsrc/TCPLIB/UTILS.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/TCPLIB/UTILS.CPP -------------------------------------------------------------------------------- /mtcpsrc/UTILS/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/UTILS/MAKEFILE -------------------------------------------------------------------------------- /mtcpsrc/UTILS/PATCH.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/UTILS/PATCH.CPP -------------------------------------------------------------------------------- /mtcpsrc/developers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/mtcpsrc/developers.pdf -------------------------------------------------------------------------------- /releases/sbaitso/Blaster.drv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/sbaitso/Blaster.drv -------------------------------------------------------------------------------- /releases/sbaitso/Read.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/sbaitso/Read.exe -------------------------------------------------------------------------------- /releases/sbaitso/Remove.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/sbaitso/Remove.exe -------------------------------------------------------------------------------- /releases/sbaitso/Sbtalker.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/sbaitso/Sbtalker.exe -------------------------------------------------------------------------------- /releases/v0.1/doschgpt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.1/doschgpt.exe -------------------------------------------------------------------------------- /releases/v0.1/doschgpt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.1/doschgpt.ini -------------------------------------------------------------------------------- /releases/v0.10/doschgpt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.10/doschgpt.exe -------------------------------------------------------------------------------- /releases/v0.10/doschgpt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.10/doschgpt.ini -------------------------------------------------------------------------------- /releases/v0.11/doschgpt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.11/doschgpt.exe -------------------------------------------------------------------------------- /releases/v0.11/doschgpt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.11/doschgpt.ini -------------------------------------------------------------------------------- /releases/v0.11/hf.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.11/hf.ini -------------------------------------------------------------------------------- /releases/v0.12/doschgpt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.12/doschgpt.exe -------------------------------------------------------------------------------- /releases/v0.12/doschgpt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.12/doschgpt.ini -------------------------------------------------------------------------------- /releases/v0.12/hf.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.12/hf.ini -------------------------------------------------------------------------------- /releases/v0.13/doschgpt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.13/doschgpt.exe -------------------------------------------------------------------------------- /releases/v0.13/doschgpt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.13/doschgpt.ini -------------------------------------------------------------------------------- /releases/v0.13/hf.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.13/hf.ini -------------------------------------------------------------------------------- /releases/v0.14/doschgpt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.14/doschgpt.exe -------------------------------------------------------------------------------- /releases/v0.14/doschgpt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.14/doschgpt.ini -------------------------------------------------------------------------------- /releases/v0.14/hf.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.14/hf.ini -------------------------------------------------------------------------------- /releases/v0.15/doschgpt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.15/doschgpt.exe -------------------------------------------------------------------------------- /releases/v0.15/doschgpt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.15/doschgpt.ini -------------------------------------------------------------------------------- /releases/v0.15/hf.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.15/hf.ini -------------------------------------------------------------------------------- /releases/v0.16/doschgpt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.16/doschgpt.exe -------------------------------------------------------------------------------- /releases/v0.16/doschgpt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.16/doschgpt.ini -------------------------------------------------------------------------------- /releases/v0.16/hf.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.16/hf.ini -------------------------------------------------------------------------------- /releases/v0.17/doschgpt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.17/doschgpt.exe -------------------------------------------------------------------------------- /releases/v0.17/doschgpt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.17/doschgpt.ini -------------------------------------------------------------------------------- /releases/v0.17/hf.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.17/hf.ini -------------------------------------------------------------------------------- /releases/v0.18/doschgpt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.18/doschgpt.exe -------------------------------------------------------------------------------- /releases/v0.18/doschgpt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.18/doschgpt.ini -------------------------------------------------------------------------------- /releases/v0.18/hf.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.18/hf.ini -------------------------------------------------------------------------------- /releases/v0.18/ollama.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.18/ollama.ini -------------------------------------------------------------------------------- /releases/v0.19/doschgpt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.19/doschgpt.exe -------------------------------------------------------------------------------- /releases/v0.19/doschgpt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.19/doschgpt.ini -------------------------------------------------------------------------------- /releases/v0.19/hf.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.19/hf.ini -------------------------------------------------------------------------------- /releases/v0.19/ollama.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.19/ollama.ini -------------------------------------------------------------------------------- /releases/v0.2/doschgpt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.2/doschgpt.exe -------------------------------------------------------------------------------- /releases/v0.2/doschgpt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.2/doschgpt.ini -------------------------------------------------------------------------------- /releases/v0.20/doschgpt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.20/doschgpt.exe -------------------------------------------------------------------------------- /releases/v0.20/doschgpt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.20/doschgpt.ini -------------------------------------------------------------------------------- /releases/v0.20/hf.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.20/hf.ini -------------------------------------------------------------------------------- /releases/v0.20/ollama.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.20/ollama.ini -------------------------------------------------------------------------------- /releases/v0.21/doschgpt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.21/doschgpt.exe -------------------------------------------------------------------------------- /releases/v0.21/doschgpt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.21/doschgpt.ini -------------------------------------------------------------------------------- /releases/v0.21/hf.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.21/hf.ini -------------------------------------------------------------------------------- /releases/v0.21/ollama.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.21/ollama.ini -------------------------------------------------------------------------------- /releases/v0.22/doschgpt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.22/doschgpt.exe -------------------------------------------------------------------------------- /releases/v0.22/doschgpt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.22/doschgpt.ini -------------------------------------------------------------------------------- /releases/v0.22/hf.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.22/hf.ini -------------------------------------------------------------------------------- /releases/v0.22/ollama.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.22/ollama.ini -------------------------------------------------------------------------------- /releases/v0.3/doschgpt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.3/doschgpt.exe -------------------------------------------------------------------------------- /releases/v0.3/doschgpt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.3/doschgpt.ini -------------------------------------------------------------------------------- /releases/v0.4/doschgpt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.4/doschgpt.exe -------------------------------------------------------------------------------- /releases/v0.4/doschgpt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.4/doschgpt.ini -------------------------------------------------------------------------------- /releases/v0.5/doschgpt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.5/doschgpt.exe -------------------------------------------------------------------------------- /releases/v0.5/doschgpt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.5/doschgpt.ini -------------------------------------------------------------------------------- /releases/v0.6/doschgpt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.6/doschgpt.exe -------------------------------------------------------------------------------- /releases/v0.6/doschgpt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.6/doschgpt.ini -------------------------------------------------------------------------------- /releases/v0.7/doschgpt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.7/doschgpt.exe -------------------------------------------------------------------------------- /releases/v0.7/doschgpt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.7/doschgpt.ini -------------------------------------------------------------------------------- /releases/v0.8/doschgpt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.8/doschgpt.exe -------------------------------------------------------------------------------- /releases/v0.8/doschgpt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.8/doschgpt.ini -------------------------------------------------------------------------------- /releases/v0.9/doschgpt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.9/doschgpt.exe -------------------------------------------------------------------------------- /releases/v0.9/doschgpt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeokm1/doschgpt/HEAD/releases/v0.9/doschgpt.ini --------------------------------------------------------------------------------