mirror of
https://gitlab.com/fabinfra/fabaccess/borepin.git
synced 2025-03-12 23:01:52 +01:00
creating a TcpClient, performing the Handshake and then injecting the stream into the RpcClient could be a viable workaround to the internal stream of the default RpcClient being inaccessible
13 lines
272 B
C#
13 lines
272 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Capnp.Rpc;
|
|
|
|
namespace FabAccessAPI {
|
|
class InjectableTcpRpcClient : TcpRpcClient {
|
|
public InjectableTcpRpcClient() {
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|