uvic-aero/onboard-computer

Create a socket in video server application

Closed this issue · 1 comments

The first step in getting the video server running is to create a socket for clients to connect to. To resolve this issue we must initialize the socket from within the video serving application. It makes the most sense to do this in the __init__ function of the application so that we are certain the socket is running as soon the application is initialized.

There are examples of socket usage within the workshops repository. For now we can structure the socket very similarly to the socket in that example.

Notes:

  • It may be a good idea to get familiar with some networking protocols
    • tcp
    • udp
    • Try to understand the difference between these two protocols

hey i'd like to work on this