Paul Zinselmeyer
ba8e969470
All checks were successful
Latex Build / build-latex (Assignment 4 - Protokollsicherheit (Praxis)) (push) Successful in 1m2s
Latex Build / build-latex (Assignment 5 - Software Security - Teil 1) (push) Successful in 1m3s
Latex Build / build-latex (Assignment 6 - Software Security - Teil 2) (push) Successful in 1m0s
Latex Build / build-latex (Assignment 4 - Protokollsicherheit (Praxis)) (pull_request) Successful in 30s
Latex Build / build-latex (Assignment 5 - Software Security - Teil 1) (pull_request) Successful in 10s
Latex Build / build-latex (Assignment 6 - Software Security - Teil 2) (pull_request) Successful in 8s
24 lines
397 B
C++
24 lines
397 B
C++
#include "NetworkManager.h"
|
|
|
|
NetworkManager::NetworkManager() {}
|
|
|
|
NetworkManager::~NetworkManager() {}
|
|
|
|
|
|
void NetworkManager::setPort(int port) {
|
|
this->port = port;
|
|
}
|
|
|
|
|
|
void NetworkManager::printMsg(bool send, const char* msg) {
|
|
string s(msg);
|
|
replace(s.begin(), s.end(), '\n', '-');
|
|
if (send)
|
|
Log("Send msg: '%s'", s);
|
|
else
|
|
Log("Received msg: '%s'", s);
|
|
}
|
|
|
|
|
|
|
|
|