Exemplo n.º 1
0
 public _FlowKey(ref _FlowKeyInternetworkV6 flowKeyInternetworkV6)
 {
     this.protocolFamily        = (ushort)ProtocolFamily.InterNetworkV6;
     this.nullFlowKey           = default;
     this.flowKeyInternetwork   = default;
     this.flowKeyInternetworkV6 = flowKeyInternetworkV6;
 }
Exemplo n.º 2
0
 public _FlowKey(ref _NullFlowKey nullFlowKey)
 {
     this.protocolFamily        = 0;
     this.flowKeyInternetwork   = default;
     this.flowKeyInternetworkV6 = default;
     this.nullFlowKey           = nullFlowKey;
 }
 public FlowKeyInternetworkV6(ref _FlowKeyInternetworkV6 data)
 {
     _data = data;
 }
 public FlowKeyInternetworkV6(ProtocolType protocolType, ReadOnlySpan <byte> sourceIpAddress, ushort sourcePort, ReadOnlySpan <byte> destinationIpAddress, ushort destinationPort)
 {
     _data = new _FlowKeyInternetworkV6((ushort)protocolType, sourceIpAddress, sourcePort,
                                        destinationIpAddress, destinationPort);
 }