├── ChangeLog.txt ├── LICENSE.txt ├── Makefile ├── README.md ├── WiiUFtpServer.png ├── _sdCard └── wiiu │ └── apps │ └── WiiUFtpServer │ ├── icon.png │ └── meta.xml ├── src ├── common │ ├── common.h │ ├── fs_defs.h │ ├── os_defs.h │ └── types.h ├── controllers.c ├── controllers.h ├── dynamic_libs │ ├── fs_functions.c │ ├── fs_functions.h │ ├── os_functions.c │ ├── os_functions.h │ ├── padscore_functions.c │ ├── padscore_functions.h │ ├── socket_functions.c │ ├── socket_functions.h │ ├── vpad_functions.c │ └── vpad_functions.h ├── fat │ ├── bit_ops.h │ ├── cache.c │ ├── cache.h │ ├── common.h │ ├── directory.c │ ├── directory.h │ ├── disc.c │ ├── disc.h │ ├── fat.h │ ├── fatdir.c │ ├── fatdir.h │ ├── fatfile.c │ ├── fatfile.h │ ├── file_allocation_table.c │ ├── file_allocation_table.h │ ├── filetime.c │ ├── filetime.h │ ├── libfat.c │ ├── libfatversion.h │ ├── lock.c │ ├── lock.h │ ├── mem_allocate.h │ ├── partition.c │ └── partition.h ├── ftp.c ├── ftp.h ├── iosuhax │ ├── iosuhax.c │ ├── iosuhax.h │ ├── iosuhax_cfw.c │ ├── iosuhax_cfw.h │ ├── iosuhax_devoptab.c │ ├── iosuhax_devoptab.h │ ├── iosuhax_disc_interface.c │ ├── iosuhax_disc_interface.h │ └── iosuhax_iosapi.h ├── link.ld ├── main.c ├── net.c ├── net.h ├── system │ ├── memory.c │ └── memory.h ├── virtualpath.c ├── virtualpath.h ├── vrt.c └── vrt.h └── timestamps.png /ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/ChangeLog.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/README.md -------------------------------------------------------------------------------- /WiiUFtpServer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/WiiUFtpServer.png -------------------------------------------------------------------------------- /_sdCard/wiiu/apps/WiiUFtpServer/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/_sdCard/wiiu/apps/WiiUFtpServer/icon.png -------------------------------------------------------------------------------- /_sdCard/wiiu/apps/WiiUFtpServer/meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/_sdCard/wiiu/apps/WiiUFtpServer/meta.xml -------------------------------------------------------------------------------- /src/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/common/common.h -------------------------------------------------------------------------------- /src/common/fs_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/common/fs_defs.h -------------------------------------------------------------------------------- /src/common/os_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/common/os_defs.h -------------------------------------------------------------------------------- /src/common/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/common/types.h -------------------------------------------------------------------------------- /src/controllers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/controllers.c -------------------------------------------------------------------------------- /src/controllers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/controllers.h -------------------------------------------------------------------------------- /src/dynamic_libs/fs_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/dynamic_libs/fs_functions.c -------------------------------------------------------------------------------- /src/dynamic_libs/fs_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/dynamic_libs/fs_functions.h -------------------------------------------------------------------------------- /src/dynamic_libs/os_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/dynamic_libs/os_functions.c -------------------------------------------------------------------------------- /src/dynamic_libs/os_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/dynamic_libs/os_functions.h -------------------------------------------------------------------------------- /src/dynamic_libs/padscore_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/dynamic_libs/padscore_functions.c -------------------------------------------------------------------------------- /src/dynamic_libs/padscore_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/dynamic_libs/padscore_functions.h -------------------------------------------------------------------------------- /src/dynamic_libs/socket_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/dynamic_libs/socket_functions.c -------------------------------------------------------------------------------- /src/dynamic_libs/socket_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/dynamic_libs/socket_functions.h -------------------------------------------------------------------------------- /src/dynamic_libs/vpad_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/dynamic_libs/vpad_functions.c -------------------------------------------------------------------------------- /src/dynamic_libs/vpad_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/dynamic_libs/vpad_functions.h -------------------------------------------------------------------------------- /src/fat/bit_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/fat/bit_ops.h -------------------------------------------------------------------------------- /src/fat/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/fat/cache.c -------------------------------------------------------------------------------- /src/fat/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/fat/cache.h -------------------------------------------------------------------------------- /src/fat/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/fat/common.h -------------------------------------------------------------------------------- /src/fat/directory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/fat/directory.c -------------------------------------------------------------------------------- /src/fat/directory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/fat/directory.h -------------------------------------------------------------------------------- /src/fat/disc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/fat/disc.c -------------------------------------------------------------------------------- /src/fat/disc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/fat/disc.h -------------------------------------------------------------------------------- /src/fat/fat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/fat/fat.h -------------------------------------------------------------------------------- /src/fat/fatdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/fat/fatdir.c -------------------------------------------------------------------------------- /src/fat/fatdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/fat/fatdir.h -------------------------------------------------------------------------------- /src/fat/fatfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/fat/fatfile.c -------------------------------------------------------------------------------- /src/fat/fatfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/fat/fatfile.h -------------------------------------------------------------------------------- /src/fat/file_allocation_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/fat/file_allocation_table.c -------------------------------------------------------------------------------- /src/fat/file_allocation_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/fat/file_allocation_table.h -------------------------------------------------------------------------------- /src/fat/filetime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/fat/filetime.c -------------------------------------------------------------------------------- /src/fat/filetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/fat/filetime.h -------------------------------------------------------------------------------- /src/fat/libfat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/fat/libfat.c -------------------------------------------------------------------------------- /src/fat/libfatversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/fat/libfatversion.h -------------------------------------------------------------------------------- /src/fat/lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/fat/lock.c -------------------------------------------------------------------------------- /src/fat/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/fat/lock.h -------------------------------------------------------------------------------- /src/fat/mem_allocate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/fat/mem_allocate.h -------------------------------------------------------------------------------- /src/fat/partition.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/fat/partition.c -------------------------------------------------------------------------------- /src/fat/partition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/fat/partition.h -------------------------------------------------------------------------------- /src/ftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/ftp.c -------------------------------------------------------------------------------- /src/ftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/ftp.h -------------------------------------------------------------------------------- /src/iosuhax/iosuhax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/iosuhax/iosuhax.c -------------------------------------------------------------------------------- /src/iosuhax/iosuhax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/iosuhax/iosuhax.h -------------------------------------------------------------------------------- /src/iosuhax/iosuhax_cfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/iosuhax/iosuhax_cfw.c -------------------------------------------------------------------------------- /src/iosuhax/iosuhax_cfw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/iosuhax/iosuhax_cfw.h -------------------------------------------------------------------------------- /src/iosuhax/iosuhax_devoptab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/iosuhax/iosuhax_devoptab.c -------------------------------------------------------------------------------- /src/iosuhax/iosuhax_devoptab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/iosuhax/iosuhax_devoptab.h -------------------------------------------------------------------------------- /src/iosuhax/iosuhax_disc_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/iosuhax/iosuhax_disc_interface.c -------------------------------------------------------------------------------- /src/iosuhax/iosuhax_disc_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/iosuhax/iosuhax_disc_interface.h -------------------------------------------------------------------------------- /src/iosuhax/iosuhax_iosapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/iosuhax/iosuhax_iosapi.h -------------------------------------------------------------------------------- /src/link.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/link.ld -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/main.c -------------------------------------------------------------------------------- /src/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/net.c -------------------------------------------------------------------------------- /src/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/net.h -------------------------------------------------------------------------------- /src/system/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/system/memory.c -------------------------------------------------------------------------------- /src/system/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/system/memory.h -------------------------------------------------------------------------------- /src/virtualpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/virtualpath.c -------------------------------------------------------------------------------- /src/virtualpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/virtualpath.h -------------------------------------------------------------------------------- /src/vrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/vrt.c -------------------------------------------------------------------------------- /src/vrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/src/vrt.h -------------------------------------------------------------------------------- /timestamps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laf111/WiiUFtpServer/HEAD/timestamps.png --------------------------------------------------------------------------------