Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thekamik/windows-telnet-client
Basic Telnet Client for Windows
https://github.com/thekamik/windows-telnet-client
c c-language c-programming socket-programming sockets telnet telnet-client windows-sockets winsock2
Last synced: about 1 month ago
JSON representation
Basic Telnet Client for Windows
- Host: GitHub
- URL: https://github.com/thekamik/windows-telnet-client
- Owner: thekamik
- License: mit
- Created: 2024-05-05T06:57:27.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-08-07T19:28:40.000Z (3 months ago)
- Last Synced: 2024-09-30T01:04:13.534Z (about 2 months ago)
- Topics: c, c-language, c-programming, socket-programming, sockets, telnet, telnet-client, windows-sockets, winsock2
- Language: C
- Homepage:
- Size: 12.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Windows-Telnet-Client
This project was created to demonstrate basic Windows socket client functionality. It provides a simple, non-secure Telnet client implemented in C.
## Compilation
Compile the project using the following command with MinGW64:
```sh
gcc -std=c99 -o telnet.exe main.c -lws2_32
```## Usage
1. Clone the repository.
2. Compile the project using the provided compilation command.
3. Run the executable.## License
This project is licensed under the MIT License.