├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── ci.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake ├── CMakeRC.cmake ├── Steamworks.cmake └── wintun.cmake ├── resources ├── .gitignore ├── Makefile ├── common │ ├── images │ │ ├── background.png │ │ ├── icon.png │ │ ├── icon.svg │ │ ├── icon.svg.license.md │ │ └── title.png │ └── videos │ │ └── partylan-demo.mp4 ├── github │ ├── images │ │ ├── download-from-steam.svg │ │ ├── icon.png │ │ └── partylan-banner.jpg │ └── lan-games-db │ │ ├── lan-games.csv │ │ └── lan-games.csv.license.md ├── run_with_console.bat ├── steam │ └── screenshots │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ └── 6.png ├── steam_appid.txt └── windows │ ├── icon.ico │ ├── resource.h │ └── resource.rc └── src ├── appmain.cpp ├── appmain.h ├── ip.cpp ├── ip.h ├── log.h ├── steam.cpp ├── steam.h ├── tun.h ├── ui.h ├── winmain.cpp ├── wintun.cpp └── winui.cpp /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/README.md -------------------------------------------------------------------------------- /cmake/CMakeRC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/cmake/CMakeRC.cmake -------------------------------------------------------------------------------- /cmake/Steamworks.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/cmake/Steamworks.cmake -------------------------------------------------------------------------------- /cmake/wintun.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/cmake/wintun.cmake -------------------------------------------------------------------------------- /resources/.gitignore: -------------------------------------------------------------------------------- 1 | generated 2 | -------------------------------------------------------------------------------- /resources/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/resources/Makefile -------------------------------------------------------------------------------- /resources/common/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/resources/common/images/background.png -------------------------------------------------------------------------------- /resources/common/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/resources/common/images/icon.png -------------------------------------------------------------------------------- /resources/common/images/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/resources/common/images/icon.svg -------------------------------------------------------------------------------- /resources/common/images/icon.svg.license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/resources/common/images/icon.svg.license.md -------------------------------------------------------------------------------- /resources/common/images/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/resources/common/images/title.png -------------------------------------------------------------------------------- /resources/common/videos/partylan-demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/resources/common/videos/partylan-demo.mp4 -------------------------------------------------------------------------------- /resources/github/images/download-from-steam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/resources/github/images/download-from-steam.svg -------------------------------------------------------------------------------- /resources/github/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/resources/github/images/icon.png -------------------------------------------------------------------------------- /resources/github/images/partylan-banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/resources/github/images/partylan-banner.jpg -------------------------------------------------------------------------------- /resources/github/lan-games-db/lan-games.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/resources/github/lan-games-db/lan-games.csv -------------------------------------------------------------------------------- /resources/github/lan-games-db/lan-games.csv.license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/resources/github/lan-games-db/lan-games.csv.license.md -------------------------------------------------------------------------------- /resources/run_with_console.bat: -------------------------------------------------------------------------------- 1 | lpvpn.exe -console 2 | -------------------------------------------------------------------------------- /resources/steam/screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/resources/steam/screenshots/1.png -------------------------------------------------------------------------------- /resources/steam/screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/resources/steam/screenshots/2.png -------------------------------------------------------------------------------- /resources/steam/screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/resources/steam/screenshots/3.png -------------------------------------------------------------------------------- /resources/steam/screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/resources/steam/screenshots/4.png -------------------------------------------------------------------------------- /resources/steam/screenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/resources/steam/screenshots/5.png -------------------------------------------------------------------------------- /resources/steam/screenshots/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/resources/steam/screenshots/6.png -------------------------------------------------------------------------------- /resources/steam_appid.txt: -------------------------------------------------------------------------------- 1 | 1122990 -------------------------------------------------------------------------------- /resources/windows/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/resources/windows/icon.ico -------------------------------------------------------------------------------- /resources/windows/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/resources/windows/resource.h -------------------------------------------------------------------------------- /resources/windows/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/resources/windows/resource.rc -------------------------------------------------------------------------------- /src/appmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/src/appmain.cpp -------------------------------------------------------------------------------- /src/appmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/src/appmain.h -------------------------------------------------------------------------------- /src/ip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/src/ip.cpp -------------------------------------------------------------------------------- /src/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/src/ip.h -------------------------------------------------------------------------------- /src/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/src/log.h -------------------------------------------------------------------------------- /src/steam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/src/steam.cpp -------------------------------------------------------------------------------- /src/steam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/src/steam.h -------------------------------------------------------------------------------- /src/tun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/src/tun.h -------------------------------------------------------------------------------- /src/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/src/ui.h -------------------------------------------------------------------------------- /src/winmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/src/winmain.cpp -------------------------------------------------------------------------------- /src/wintun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/src/wintun.cpp -------------------------------------------------------------------------------- /src/winui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyf304/partylan/HEAD/src/winui.cpp --------------------------------------------------------------------------------