planning
This commit is contained in:
@@ -2,3 +2,9 @@
|
|||||||
|
|
||||||
1. run local server within network
|
1. run local server within network
|
||||||
2. run client on different computers within network
|
2. run client on different computers within network
|
||||||
|
|
||||||
|
# Brainstorm
|
||||||
|
Client should connect to websocket server. On connect, client receives a cache of most recent messages.
|
||||||
|
|
||||||
|
On sending message, it is broadcasted to all connected clients, including sender.
|
||||||
|
|
||||||
|
|||||||
@@ -3,15 +3,10 @@
|
|||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
std::cout << "Hello World!" << std::endl;
|
|
||||||
|
|
||||||
// ask for name of person
|
|
||||||
std::cout << "Please enter your first name: ";
|
std::cout << "Please enter your first name: ";
|
||||||
char *name = new char[100];
|
char *name = new char[100];
|
||||||
std::cin >> name;
|
std::cin >> name;
|
||||||
|
|
||||||
std::string welcome_message = "Welcome, " + std::string(name) + "!";
|
std::string welcome_message = "Welcome, " + std::string(name) + "!";
|
||||||
|
|
||||||
std::cout << std::endl << BOLDGREEN << welcome_message << RESET << std::endl;
|
std::cout << std::endl << BOLDGREEN << welcome_message << RESET << std::endl;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user