![]()
Socket Programming Introduction
CptS/EE 455 - Computer Communication Networks - Fall 2016 Washington State University |
|
Introduction to Socket ProgrammingBefore we can talk about socket programming we have to leap ahead a bit and talk about the network and transport layers briefly (we'll come back to these with more detail about how they work later).Recall that the network layer is responsible for delivery of packets from one host to another across potentially many, interconnected links. The network layer has implementation components in the end points as well as in routers that connect links. The transport layer on the other hand is implemented only in the end points and concerns itself with packet ordering, reliable delivery, and addressing within the end point.
In the Internet family of protocols the network layer protocol is the
The main two transport protcols in the internet family are the
Strong suggestion: get the code for the TCP Echo Client and Server for Chapter 2 from the book website and make sure that you can make them work. Notes for the slides:
The socket layer is an |
|