From 2c1c11c34a845eff9c0e1740dc4a0b32bead0481 Mon Sep 17 00:00:00 2001 From: Connor Date: Wed, 19 Dec 2018 04:41:36 +0000 Subject: [PATCH] Added resource link to Beej's Networking Guide (#25241) Added a link to https://beej.us/guide/bgnet/, which is an excellent resource for learning network programming in C --- guide/english/c/basic-networking/index.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/guide/english/c/basic-networking/index.md b/guide/english/c/basic-networking/index.md index 8ba0b4937b..9efe119b44 100644 --- a/guide/english/c/basic-networking/index.md +++ b/guide/english/c/basic-networking/index.md @@ -21,4 +21,6 @@ Socket programming is a way of connecting two nodes on a network to communicate 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 +- [GeekForGeeks: Socket Programming in C](https://www.geeksforgeeks.org/socket-programming-cc) +- [Beej's guide to Network Programming](https://beej.us/guide/bgnet/) +