├── .gitignore ├── CMakeLists.txt ├── dswifi_license.txt ├── include ├── arpa │ └── inet.h ├── dswifi9.h ├── netdb.h ├── netinet │ ├── in.h │ └── tcp.h ├── sys │ ├── ioctl.h │ └── socket.h └── wfc.h └── source ├── dswifi9.c ├── sgIP ├── sgIP.c ├── sgIP.h ├── sgIP_ARP.c ├── sgIP_ARP.h ├── sgIP_Config.h ├── sgIP_DHCP.c ├── sgIP_DHCP.h ├── sgIP_DNS.c ├── sgIP_DNS.h ├── sgIP_Hub.c ├── sgIP_Hub.h ├── sgIP_ICMP.c ├── sgIP_ICMP.h ├── sgIP_IP.c ├── sgIP_IP.h ├── sgIP_TCP.c ├── sgIP_TCP.h ├── sgIP_UDP.c ├── sgIP_UDP.h ├── sgIP_memblock.c ├── sgIP_memblock.h ├── sgIP_sockets.c └── sgIP_sockets.h ├── wfc.c └── wpa.twl.c /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | .*/ 3 | *~ 4 | *.bak 5 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/dswifi/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /dswifi_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/dswifi/HEAD/dswifi_license.txt -------------------------------------------------------------------------------- /include/arpa/inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/dswifi/HEAD/include/arpa/inet.h -------------------------------------------------------------------------------- /include/dswifi9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/dswifi/HEAD/include/dswifi9.h -------------------------------------------------------------------------------- /include/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/dswifi/HEAD/include/netdb.h -------------------------------------------------------------------------------- /include/netinet/in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/dswifi/HEAD/include/netinet/in.h -------------------------------------------------------------------------------- /include/netinet/tcp.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/sys/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/dswifi/HEAD/include/sys/ioctl.h -------------------------------------------------------------------------------- /include/sys/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/dswifi/HEAD/include/sys/socket.h -------------------------------------------------------------------------------- /include/wfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/dswifi/HEAD/include/wfc.h -------------------------------------------------------------------------------- /source/dswifi9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/dswifi/HEAD/source/dswifi9.c -------------------------------------------------------------------------------- /source/sgIP/sgIP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/dswifi/HEAD/source/sgIP/sgIP.c -------------------------------------------------------------------------------- /source/sgIP/sgIP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/dswifi/HEAD/source/sgIP/sgIP.h -------------------------------------------------------------------------------- /source/sgIP/sgIP_ARP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/dswifi/HEAD/source/sgIP/sgIP_ARP.c -------------------------------------------------------------------------------- /source/sgIP/sgIP_ARP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/dswifi/HEAD/source/sgIP/sgIP_ARP.h -------------------------------------------------------------------------------- /source/sgIP/sgIP_Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/dswifi/HEAD/source/sgIP/sgIP_Config.h -------------------------------------------------------------------------------- /source/sgIP/sgIP_DHCP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/dswifi/HEAD/source/sgIP/sgIP_DHCP.c -------------------------------------------------------------------------------- /source/sgIP/sgIP_DHCP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/dswifi/HEAD/source/sgIP/sgIP_DHCP.h -------------------------------------------------------------------------------- /source/sgIP/sgIP_DNS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/dswifi/HEAD/source/sgIP/sgIP_DNS.c -------------------------------------------------------------------------------- /source/sgIP/sgIP_DNS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/dswifi/HEAD/source/sgIP/sgIP_DNS.h -------------------------------------------------------------------------------- /source/sgIP/sgIP_Hub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/dswifi/HEAD/source/sgIP/sgIP_Hub.c -------------------------------------------------------------------------------- /source/sgIP/sgIP_Hub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/dswifi/HEAD/source/sgIP/sgIP_Hub.h -------------------------------------------------------------------------------- /source/sgIP/sgIP_ICMP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/dswifi/HEAD/source/sgIP/sgIP_ICMP.c -------------------------------------------------------------------------------- /source/sgIP/sgIP_ICMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/dswifi/HEAD/source/sgIP/sgIP_ICMP.h -------------------------------------------------------------------------------- /source/sgIP/sgIP_IP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/dswifi/HEAD/source/sgIP/sgIP_IP.c -------------------------------------------------------------------------------- /source/sgIP/sgIP_IP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/dswifi/HEAD/source/sgIP/sgIP_IP.h -------------------------------------------------------------------------------- /source/sgIP/sgIP_TCP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/dswifi/HEAD/source/sgIP/sgIP_TCP.c -------------------------------------------------------------------------------- /source/sgIP/sgIP_TCP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/dswifi/HEAD/source/sgIP/sgIP_TCP.h -------------------------------------------------------------------------------- /source/sgIP/sgIP_UDP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/dswifi/HEAD/source/sgIP/sgIP_UDP.c -------------------------------------------------------------------------------- /source/sgIP/sgIP_UDP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/dswifi/HEAD/source/sgIP/sgIP_UDP.h -------------------------------------------------------------------------------- /source/sgIP/sgIP_memblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/dswifi/HEAD/source/sgIP/sgIP_memblock.c -------------------------------------------------------------------------------- /source/sgIP/sgIP_memblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/dswifi/HEAD/source/sgIP/sgIP_memblock.h -------------------------------------------------------------------------------- /source/sgIP/sgIP_sockets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/dswifi/HEAD/source/sgIP/sgIP_sockets.c -------------------------------------------------------------------------------- /source/sgIP/sgIP_sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/dswifi/HEAD/source/sgIP/sgIP_sockets.h -------------------------------------------------------------------------------- /source/wfc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/dswifi/HEAD/source/wfc.c -------------------------------------------------------------------------------- /source/wpa.twl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/dswifi/HEAD/source/wpa.twl.c --------------------------------------------------------------------------------