mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-08 19:44:57 -05:00
11 lines
306 B
C++
11 lines
306 B
C++
#include <concretelang/ServerLib/ServerLambda.h>
|
|
|
|
void answer_client(MyConnection conn) {
|
|
std::istream from_client = conn.istream();
|
|
std::ostream to_client = conn.ostream();
|
|
auto err = serverLambda.read_call_write(serverInput, serverOutput);
|
|
if (err) {
|
|
throw MyException();
|
|
}
|
|
}
|