https://github.com/thekamik/telnet-client
Basic Telnet Client for Windows
https://github.com/thekamik/telnet-client
c c-language c-programming socket-programming sockets telnet telnet-client windows-sockets winsock2
Last synced: 3 months ago
JSON representation
Basic Telnet Client for Windows
- Host: GitHub
- URL: https://github.com/thekamik/telnet-client
- Owner: thekamik
- License: mit
- Created: 2024-05-05T06:57:27.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-01T19:05:53.000Z (10 months ago)
- Last Synced: 2025-03-13T23:44:19.926Z (7 months ago)
- Topics: c, c-language, c-programming, socket-programming, sockets, telnet, telnet-client, windows-sockets, winsock2
- Language: C
- Homepage:
- Size: 15.6 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.