lec5/6 for networking needs some more information

This commit is contained in:
Medium Fries 2018-09-17 19:30:42 -07:00
parent e6759cac92
commit 7dcff3983c
2 changed files with 16 additions and 0 deletions

15
cst311/lec/lec6.md Normal file
View File

@ -0,0 +1,15 @@
# lec6
## Content Distribution Networks
> tdb
## Sockets
### Connections
Any time we setup some type of connection there's also some handshake between both nodes between client & server.
With `UDP` however there is _no_ concept of a connection.
Instead we send data directly to an address.
With TCP connections however we do assume the concept of a connection which means we have to have that handshake between client and server in order to anything with the target server.
This handshake creates a socket on the server and on the client machine through which both can communicate.

1
cst337/lec/lec5.md Normal file
View File

@ -0,0 +1 @@
# lec5