From 251092a359a655d58485c303887810001260e5a8 Mon Sep 17 00:00:00 2001 From: Ilkay Tevfik Devran Date: Tue, 20 Nov 2018 00:32:41 +0300 Subject: [PATCH] Example to Basic Socket Programming (#22179) A link has been added for example to socket programming. --- guide/english/c/basic-networking/index.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/guide/english/c/basic-networking/index.md b/guide/english/c/basic-networking/index.md index 37fae33755..8ba0b4937b 100644 --- a/guide/english/c/basic-networking/index.md +++ b/guide/english/c/basic-networking/index.md @@ -19,3 +19,6 @@ Socket programming is a way of connecting two nodes on a network to communicate ## I have Socket... Now what? Once a socket has been created between two nodes (a.k.a hosts or computing systems), a language needs to be agreed upon so the hosts can communicate between themselves - and others. This language is often referred to as a [protocol](https://en.wikipedia.org/wiki/Communication_protocol "Wikipedia: Communication Protocol") - or an agreed upon way to communicate between hosts. While there are many different protocols, the two most often used protocols are [UDP (User Datagram Protocol](https://en.wikipedia.org/wiki/User_Datagram_Protocol "Wikipedia: User Datagram Procol") and [TCP (Transmission Control Protocol)](https://en.wikipedia.org/wiki/Transmission_Control_Protocol "Wikipedia: Transmission Control Protocol"). + +#### More Information +- [GeekForGeeks: Socket Programming in C](https://www.geeksforgeeks.org/socket-programming-cc) \ No newline at end of file