{"id":49182831,"url":"https://github.com/simple-works/tcp-api-csharp","last_synced_at":"2026-04-23T02:04:27.246Z","repository":{"id":65835226,"uuid":"379552474","full_name":"simple-works/tcp-api-csharp","owner":"simple-works","description":"Simple TCP client and server written in C# .NET for learning purposes.","archived":false,"fork":false,"pushed_at":"2021-07-09T07:25:41.000Z","size":219,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-07-17T02:47:31.995Z","etag":null,"topics":["ip","socket","socket-client","socket-programming","socket-server","tcp","tcp-client","tcp-ip","tcp-ip-sockets","tcp-server","tcp-socket","tcp-socket-programming","tcp-sockets"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/simple-works.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-06-23T09:41:48.000Z","updated_at":"2024-07-17T02:47:31.996Z","dependencies_parsed_at":"2023-02-13T07:25:10.772Z","dependency_job_id":null,"html_url":"https://github.com/simple-works/tcp-api-csharp","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/simple-works/tcp-api-csharp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simple-works%2Ftcp-api-csharp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simple-works%2Ftcp-api-csharp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simple-works%2Ftcp-api-csharp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simple-works%2Ftcp-api-csharp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/simple-works","download_url":"https://codeload.github.com/simple-works/tcp-api-csharp/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simple-works%2Ftcp-api-csharp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32162614,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-22T17:06:48.269Z","status":"online","status_checked_at":"2026-04-23T02:00:06.710Z","response_time":53,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ip","socket","socket-client","socket-programming","socket-server","tcp","tcp-client","tcp-ip","tcp-ip-sockets","tcp-server","tcp-socket","tcp-socket-programming","tcp-sockets"],"created_at":"2026-04-23T02:04:10.203Z","updated_at":"2026-04-23T02:04:27.232Z","avatar_url":"https://github.com/simple-works.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ![Icon](./icon.png) TCP API C#\n\n[![Windows](https://img.shields.io/badge/Windows-blue?logo=windows)](https://github.com/topics/windows)\n[![C# 4.0](https://img.shields.io/badge/C%23-4.0-blue?logo=c-sharp)](https://github.com/topics/csharp)\n[![.NET Framework 4.0](https://img.shields.io/badge/.NET%20Framework-4.0-blue?logo=dot-net)](https://github.com/topics/dotnet)\n\nSimple TCP Client and Server written in C# .NET for learning purposes.\n\nThe project consists of simple:\n- **🎁 Wrapper** for the **TCP/IP Socket API** (_TcpClient_ and _TcpListener_ Classes).\n- **✏ Console Logger** accompagning the wrapper.\n- **💻 Client** and **💻 Server** console applications using the wrapper.\n\n\u003cdetails\u003e\n  \u003csummary\u003e:floppy_disk: Download Binaries\u003c/summary\u003e\n\n  - \u003cimg src=\"./Client/icon.ico\" alt=\"\" width=\"16\"\u003e [**Server.exe**](./Server/bin/Release/Server.exe?raw=true)\n  - \u003cimg src=\"./Server/icon.ico\" alt=\"\" width=\"16\"\u003e [**Client.exe**](./Client/bin/Release/Client.exe?raw=true)\n  - :package: [**SharedAPI.dll**](./SharedAPI/bin/Release/SharedAPI.dll?raw=true) :information_source: _Keep it alongside executables._\n\u003c/details\u003e\n\n![Screenshot](./screenshot-client.gif?raw=true)\n![Screenshot](./screenshot-server.gif?raw=true)\n\n## :arrow_forward: Usage\nExecutables can run directly using defaults or by passing arguments as the following:\n- `server [\u003clocal-ip-address\u003e [\u003clocal-port\u003e]]`\n- `client [\u003clocal-ip-address\u003e [\u003clocal-port\u003e]] to [\u003cremote-ip-address\u003e [\u003cremote-port\u003e]]`\n\nExample:\n- Run Server:\n```batch\ncd server\\executable\\directory\nserver 127.0.0.1 8080\n```\n- Run Client:\n```batch\ncd client\\executable\\directory\nserver client 127.0.0.200 7070 to 127.0.0.1 8080\n```\n\n## :rocket: Development\n- Language: **[C#](https://github.com/dotnet/csharplang) 4.0**\n- Framework: **[.NET](https://github.com/dotnet) Framework 4.0**\n- IDE: **[Visual Studio](https://github.com/microsoft) 2010**\n\n## :page_facing_up: License\n- Licensed under [MIT](./LICENSE).\n- Using [Free FatCow Farm Fresh Icons 3.92](http://www.fatcow.com/free-icons) licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/us).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimple-works%2Ftcp-api-csharp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsimple-works%2Ftcp-api-csharp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimple-works%2Ftcp-api-csharp/lists"}