[PR #856] [MERGED] feat: TCP Full Duplex Server Client Communication #1363

Open
opened 2026-01-29 15:19:46 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/856
Author: @NVombat
Created: 9/15/2021
Status: Merged
Merged: 9/22/2021
Merged by: @Panquesito7

Base: masterHead: master


📝 Commits (6)

  • 68ea7b8 TCP Full Duplex Server Client Communication
  • 7a9f03b Changes made to successfully complete 5th Check
  • 1b2518a Update client_server/tcp_full_duplex_server.c
  • 5c83cd5 updating DIRECTORY.md
  • 45ee757 Update tcp_full_duplex_client.c
  • af03dbb Update client_server/tcp_full_duplex_client.c

📊 Changes

3 files changed (+370 additions, -0 deletions)

View changed files

📝 DIRECTORY.md (+2 -0)
client_server/tcp_full_duplex_client.c (+173 -0)
client_server/tcp_full_duplex_server.c (+195 -0)

📄 Description

Description of Change

Implemented a Full Duplex Communication server client model using a TCP socket

References

Checklist

  • Added description of change
  • Added file name matches File name guidelines
  • Relevant documentation/comments is changed or added
  • PR title follows semantic commit guidelines
  • Search previous suggestions before making a new one, as yours may be a duplicate.
  • I acknowledge that all my contributions will be made under the project's license.

Notes:


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/TheAlgorithms/C/pull/856 **Author:** [@NVombat](https://github.com/NVombat) **Created:** 9/15/2021 **Status:** ✅ Merged **Merged:** 9/22/2021 **Merged by:** [@Panquesito7](https://github.com/Panquesito7) **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (6) - [`68ea7b8`](https://github.com/TheAlgorithms/C/commit/68ea7b89a63e86915e6ba8e41c94947078cafee3) TCP Full Duplex Server Client Communication - [`7a9f03b`](https://github.com/TheAlgorithms/C/commit/7a9f03b9c3a54d6f1ece350caf3f2e0c9578754a) Changes made to successfully complete 5th Check - [`1b2518a`](https://github.com/TheAlgorithms/C/commit/1b2518a4980cacdbef17943f1b036ebf3d8c5e8e) Update client_server/tcp_full_duplex_server.c - [`5c83cd5`](https://github.com/TheAlgorithms/C/commit/5c83cd5bcd17ebca33c79fcb23a253fdc32d0d37) updating DIRECTORY.md - [`45ee757`](https://github.com/TheAlgorithms/C/commit/45ee757ad08eafcceac2bfbbdad13f322e17f33b) Update tcp_full_duplex_client.c - [`af03dbb`](https://github.com/TheAlgorithms/C/commit/af03dbbffc11a7a68bcb58606dbd865e55e4abe9) Update client_server/tcp_full_duplex_client.c ### 📊 Changes **3 files changed** (+370 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `DIRECTORY.md` (+2 -0) ➕ `client_server/tcp_full_duplex_client.c` (+173 -0) ➕ `client_server/tcp_full_duplex_server.c` (+195 -0) </details> ### 📄 Description #### Description of Change Implemented a Full Duplex Communication server client model using a TCP socket <!-- Thank you for your Pull Request. Please provide a description above and review the requirements below. Contributors guide: https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md --> #### References <!-- Add any reference to previous pull-request or issue --> #### Checklist <!-- Remove items that do not apply. For completed items, change [ ] to [x]. --> - [x] Added description of change - [x] Added file name matches [File name guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#File-Name-guidelines) - [x] Relevant documentation/comments is changed or added - [x] PR title follows semantic [commit guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#Commit-Guidelines) - [x] Search previous suggestions before making a new one, as yours may be a duplicate. - [x] I acknowledge that all my contributions will be made under the project's license. Notes: <!-- Please add a one-line description for developers or pull request viewers --> <a href="https://gitpod.io/#https://github.com/TheAlgorithms/C/pull/856"><img src="https://gitpod.io/button/open-in-gitpod.svg"/></a> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 15:19:46 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1363