Initial network files
This commit is contained in:
parent
01e0808e41
commit
594f66ab23
8 changed files with 225 additions and 0 deletions
26
NetworkClient.cpp
Normal file
26
NetworkClient.cpp
Normal 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
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue