Fix TwoPartyServer to handle more than one client at a time. Fixes #23

Also fix various memleaks in RpcServer/Client
This commit is contained in:
Jason Paryani
2014-02-13 22:08:26 -08:00
parent dceb437c44
commit 55dcff0dad
6 changed files with 105 additions and 68 deletions

View File

@@ -27,3 +27,7 @@ public:
private:
PyObject * py_event_port;
};
void waitNeverDone(kj::WaitScope & scope) {
kj::NEVER_DONE.wait(scope);
}