Initial network files

This commit is contained in:
Adam Honse 2020-04-11 13:42:32 -05:00
parent 01e0808e41
commit 594f66ab23
8 changed files with 225 additions and 0 deletions

26
NetworkClient.cpp Normal file
View file

@ -0,0 +1,26 @@
#include "NetworkClient.h"
NetworkClient::NetworkClient(std::vector<RGBController *>& control) : controllers(control)
{
//Start the connection thread
}
void NetworkClient::ConnectionThread()
{
//This thread manages the connection to the server
while(1)
{
//Connect to server and reconnect if the connection is lost
}
}
void NetworkClient::ListenThread()
{
//This thread handles messages received from the server
while(1)
{
//Listen for request
//Request received, select functionality based on request ID
}
}