Initial commit

This commit is contained in:
Théo Monnom
2022-04-30 17:45:59 +02:00
commit 9ad7128319
13 changed files with 36580 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#include <iostream>
#include <boost/regex.hpp>
#include "src/signal_client.h"
int main() {
std::cout << "Hello, World!" << std::endl;
livekit::SignalClient client;
client.Connect("ws://localhost:7880/rtc", "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2NTMzMTY2MjYsImlzcyI6IkFQSUNrSG04M01oZ2hQeCIsIm5iZiI6MTY1MDcyNDYyNiwic3ViIjoidGVzdCIsInZpZGVvIjp7InJvb20iOiJ0ZXN0cm9vbSIsInJvb21Kb2luIjp0cnVlfX0.I3Q5W4pk1kUNguGEJ4m95nE8hl8cPCliXBtF9hCt-Wg");
return 0;
}