First working implementation of Streamer, with TCP and SharedMemory.

This commit is contained in:
brunoherbelin
2020-10-18 13:13:07 +02:00
parent 59c07ceb96
commit d7893be541
13 changed files with 406 additions and 61 deletions

View File

@@ -81,9 +81,9 @@ struct StreamingConfig
int port;
int profile;
StreamingConfig() : ip("") {
StreamingConfig() : ip("localhost") {
profile = 0;
port = 5000;
port = 5400;
}
};