Ejemplo n.º 1
0
 public DuplexPipe(TunnelBase tunnel)
     : base(tunnel)
 {
 }
Ejemplo n.º 2
0
 public DuplexPipe(TunnelBase tunnel, UInt32 cid)
     : base(tunnel, cid)
 {
 }
Ejemplo n.º 3
0
 public PipeBase(TunnelBase tunnel, UInt32 cid)
 {
     this.ID      = cid;
     this.mTunnel = tunnel;
 }
Ejemplo n.º 4
0
 public PipeBase(TunnelBase tunnel)
 {
     mTunnel = tunnel;
     BitConverter.ToUInt32(Sodium.SodiumCore.GetRandomBytes(32), 0);
 }
Ejemplo n.º 5
0
 public RPCEventArgs(IHasSerializationTag rpc, TunnelBase tunnel)
 {
     this.RPC    = rpc;
     this.Tunnel = tunnel;
 }
Ejemplo n.º 6
0
 public PipeChangedEventArgs(PipeBase pipe, TunnelBase tunnel)
 {
     this.Pipe   = pipe;
     this.Tunnel = tunnel;
 }
Ejemplo n.º 7
0
 public ControlPipe(TunnelBase tunnel)
     : base(tunnel, 0)
 {
 }