More actions
No edit summary |
No edit summary |
||
Line 19: | Line 19: | ||
|source=https://repo.or.cz/w/svpe-wii.git | |source=https://repo.or.cz/w/svpe-wii.git | ||
}} | }} | ||
Svpe has been using the recent developments of the socket interface and has created a loader that loads binaries over TCP. | '''TCP Loader''' - Svpe has been using the recent developments of the socket interface and has created a loader that loads binaries over TCP. | ||
It is a TCP server running on the Wii that listens on port 8080 and will run any binary that is sent to it after you confirmed the IP address with your GameCube controller. An additional warning is displayed when the connection comes from the Internet (i.e. the first two octets of your Wii's ip does not match the first two octets of the connector's ip). Both DOL and ELF executables are supported. | It is a TCP server running on the Wii that listens on port 8080 and will run any binary that is sent to it after you confirmed the IP address with your GameCube controller. An additional warning is displayed when the connection comes from the Internet (i.e. the first two octets of your Wii's ip does not match the first two octets of the connector's ip). Both DOL and ELF executables are supported. |
Revision as of 07:25, 13 November 2022
TCP Loader | |
---|---|
General | |
Author | svpe |
Type | Loader |
Version | 0.1 |
License | GNU GPL v2 |
Last Updated | 2008/04/15 |
Links | |
Download | |
Source | |
TCP Loader - Svpe has been using the recent developments of the socket interface and has created a loader that loads binaries over TCP.
It is a TCP server running on the Wii that listens on port 8080 and will run any binary that is sent to it after you confirmed the IP address with your GameCube controller. An additional warning is displayed when the connection comes from the Internet (i.e. the first two octets of your Wii's ip does not match the first two octets of the connector's ip). Both DOL and ELF executables are supported.
A working windows gui has been written by henke37 and dasda and is available as SendElf.
There is a video available on how to use TCP Loader here:
Protocol
The client first sends the length of the file to load in big-endian int32 and then the data of the file. There is no traffic from the server.
Usage
Launch the included elf or dol using your favourite method of launching homebrew one your console. It will then start listening on port 8080 and wait for a connection of the client.
External links
- Wiibrew - https://wiibrew.org/wiki/TCP_Loader
- Source - https://repo.or.cz/w/svpe-wii.git