[PR #930] [MERGED] Remote Command Execution Using UDP Client Server Model (& Merging Branch Locally) #1460

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/930
Author: @NVombat
Created: 1/9/2022
Status: Merged
Merged: 1/11/2022
Merged by: @mishraabhinn

Base: masterHead: master


📝 Commits (10+)

  • 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
  • 9fe87bd Merge branch 'TheAlgorithms:master' into master
  • 2454ce0 Fix Typos In Full Duplex TCP & Add Remote Command Execution Using UDP
  • 6458c50 updating DIRECTORY.md
  • 296c075 Update settings.json

📊 Changes

5 files changed (+328 additions, -22 deletions)

View changed files

📝 DIRECTORY.md (+2 -0)
client_server/remote_command_exec_udp_client.c (+147 -0)
client_server/remote_command_exec_udp_server.c (+157 -0)
📝 client_server/tcp_full_duplex_client.c (+11 -11)
📝 client_server/tcp_full_duplex_server.c (+11 -11)

📄 Description

Description of Change

Added Remote Command Execution Using UDP Client Server Model & Merging Branch to be up to date for further contributions

Checklist

  • Added description of change
  • Added file name matches File name guidelines
  • Added tests and example, test must pass
  • 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.


🔄 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/930 **Author:** [@NVombat](https://github.com/NVombat) **Created:** 1/9/2022 **Status:** ✅ Merged **Merged:** 1/11/2022 **Merged by:** [@mishraabhinn](https://github.com/mishraabhinn) **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (10+) - [`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 - [`9fe87bd`](https://github.com/TheAlgorithms/C/commit/9fe87bd2cad4b4bb987f4ce6bc7963d19fe385cd) Merge branch 'TheAlgorithms:master' into master - [`2454ce0`](https://github.com/TheAlgorithms/C/commit/2454ce024088a89f02dc73f4da0795031c4b52b6) Fix Typos In Full Duplex TCP & Add Remote Command Execution Using UDP - [`6458c50`](https://github.com/TheAlgorithms/C/commit/6458c500823d8cf0c7f40f7a32713590858730bd) updating DIRECTORY.md - [`296c075`](https://github.com/TheAlgorithms/C/commit/296c0758c9ac761a2d7f31d45ce9f50f85108616) Update settings.json ### 📊 Changes **5 files changed** (+328 additions, -22 deletions) <details> <summary>View changed files</summary> 📝 `DIRECTORY.md` (+2 -0) ➕ `client_server/remote_command_exec_udp_client.c` (+147 -0) ➕ `client_server/remote_command_exec_udp_server.c` (+157 -0) 📝 `client_server/tcp_full_duplex_client.c` (+11 -11) 📝 `client_server/tcp_full_duplex_server.c` (+11 -11) </details> ### 📄 Description #### Description of Change Added Remote Command Execution Using UDP Client Server Model & Merging Branch to be up to date for further contributions #### Checklist - [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] Added tests and example, test must pass - [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. <a href="https://gitpod.io/#https://github.com/TheAlgorithms/C/pull/930"><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:20:57 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1460