├── .a.swp ├── .gdb_history ├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .gitmodules ├── ICON0.png ├── LICENSE ├── Makefile ├── PARAM.SFO ├── README.md ├── _config.yml ├── clean.sh ├── ip.txt ├── lib └── argh │ └── include │ └── argh.h ├── path.sh ├── rebuild.sh └── src ├── PSP-Chat └── main.cpp └── Test-Server ├── fuckmain.cpp ├── main.cpp └── stardust_networking.h /.a.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noche-x/PSPCord/HEAD/.a.swp -------------------------------------------------------------------------------- /.gdb_history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noche-x/PSPCord/HEAD/.gdb_history -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noche-x/PSPCord/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noche-x/PSPCord/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noche-x/PSPCord/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noche-x/PSPCord/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noche-x/PSPCord/HEAD/.gitmodules -------------------------------------------------------------------------------- /ICON0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noche-x/PSPCord/HEAD/ICON0.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noche-x/PSPCord/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noche-x/PSPCord/HEAD/Makefile -------------------------------------------------------------------------------- /PARAM.SFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noche-x/PSPCord/HEAD/PARAM.SFO -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noche-x/PSPCord/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noche-x/PSPCord/HEAD/_config.yml -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- 1 | source path.sh 2 | make clean 3 | -------------------------------------------------------------------------------- /ip.txt: -------------------------------------------------------------------------------- 1 | 192.168.2.190 -------------------------------------------------------------------------------- /lib/argh/include/argh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noche-x/PSPCord/HEAD/lib/argh/include/argh.h -------------------------------------------------------------------------------- /path.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noche-x/PSPCord/HEAD/path.sh -------------------------------------------------------------------------------- /rebuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noche-x/PSPCord/HEAD/rebuild.sh -------------------------------------------------------------------------------- /src/PSP-Chat/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noche-x/PSPCord/HEAD/src/PSP-Chat/main.cpp -------------------------------------------------------------------------------- /src/Test-Server/fuckmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noche-x/PSPCord/HEAD/src/Test-Server/fuckmain.cpp -------------------------------------------------------------------------------- /src/Test-Server/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noche-x/PSPCord/HEAD/src/Test-Server/main.cpp -------------------------------------------------------------------------------- /src/Test-Server/stardust_networking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noche-x/PSPCord/HEAD/src/Test-Server/stardust_networking.h --------------------------------------------------------------------------------