Skip to content
#

socketprogramming

Here are 7 public repositories matching this topic...

The aim of this assignment is to have you do TCP socket client / server programming using I/O multiplexing, child processes and threads. It also aims at getting you to familiarize yourselves with the inetd superserver daemon, the ‘exec’ family of functions, various socket error scenarios, some socket options, and some basic domain name / IP address

  • Updated Dec 9, 2021
  • C

Creating threads can be quite expensive. Typically each thread is going to do essentially the same thing so it’s good to keep reusing them. Threads are actually quite heavy and creating or destroying threads takes time away from what you’re trying to accomplish. Another benefit of thread pools is they keep the system from becoming overloaded. Th…

  • Updated Mar 4, 2021
  • C

Overview For this assignment you will be developing and implementing : An On-Demand shortest-hop Routing (ODR) protocol for networks of fixed but arbitrary and unknown connectivity, using PF_PACKET sockets. The implementation is based on (a simplified version of) the AODV algorithm. Time client and server applications that send requests and replies

  • Updated Dec 9, 2021
  • C

Improve this page

Add a description, image, and links to the socketprogramming topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the socketprogramming topic, visit your repo's landing page and select "manage topics."

Learn more