2023-10-05
Summary
keywords
TODO
HW
Exercise*
Next time TCP. and more about multiplexing with TCP.
Recap
video buffer
currently on Streaming stored video. Chapter 7.2 on 6th ed.
In Video streaming, there's a TCP buffer, and Client buffer. #read: analysis on video streaming
#todo : paste image of buffer (with x, Q, R..) Startup delay : Q/x sec. where Q is the minimum byte client needs to start showing. x is the transmission rate (byte/ sec)
when R is bigger than x, and depletion rate is faster than x, there will be stopping in playing. when R is smaller than x, the buffer will be full, and there will be packet drop.
Video Streaming (Cont'd)
Manifest files
manifest file provides URLs for different chunks. manifest file is sent first. As the client manages the buffer, it chooses the right chunk needed.
Socket programming w/ UDP & TCP
Steps (Application layer -> Transport layer) the running application is called a process. The process will create a socket with designated port. Done. All others are out of hand.
TCP will take care of the un-landed packets. (by ACK) UDP do not do connection establishment. UDP do not do a handshake. In UDP, sender explicitly attaches destination IP & port to each packet.
Socket w/ UDP
Example app: UDP client
Example server : UDP server
Socket w/TCP
when client creates socket: client establishes connection to server TCP
difference : the
accept()
function is needed.#todo : check the process w/ wireshark.
new socket for each client.
Example app : TCP client
#todo : fill out the codes. both server and app.
Example server :TCP client
Last updated