2 files changed, 4 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 3f131512..88adc97c 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -27,10 +27,11 @@
int main (int argc, char** argv){
- auto handler = std::make_shared<rtcPeerHandler>();
+ auto commsHandler = std::make_shared<rtcPeerHandler>();
auto rpcHandler = std::unique_ptr<rpcStub>();
std::cout << "Server created" <<std::endl;
+ //rpcHandler->server->Wait(); //blocking, this will need to be threaded
return 0;
}
\ No newline at end of file
diff --git a/src/rpcStub.hpp b/src/rpcStub.hpp
index 9da80cda..99d6d582 100644
--- a/src/rpcStub.hpp
+++ b/src/rpcStub.hpp
@@ -4,7 +4,8 @@
class rpcStub{
public:
rpcStub(int port);
- private:
std::unique_ptr<grpc::Server> server;
+ private:
+
};
\ No newline at end of file
|