Example #1
0
 internal override bool EqualsData(TcpOption other)
 {
     return(other is TcpOptionPartialOrderConnectionPermitted);
 }
Example #2
0
 /// <summary>
 /// Two window scale options are equal if they have the same scale factor.
 /// </summary>
 public override bool Equals(TcpOption other)
 {
     return(Equals(other as TcpOptionWindowScale));
 }
 public override bool Equals(TcpOption other)
 {
     return(this.Equals(other as TcpOptionSelectiveAcknowledgment));
 }
 public override bool Equals(TcpOption other)
 {
     return(this.Equals(other as TcpOptionMd5Signature));
 }
Example #5
0
 /// <summary>
 /// Two echo options are equal if they have the same info.
 /// </summary>
 public override bool Equals(TcpOption other)
 {
     return Equals(other as TcpOptionEcho);
 }
Example #6
0
 public override bool Equals(TcpOption other)
 {
     return(this.Equals(other as TcpOptionMood));
 }
Example #7
0
 public override bool Equals(TcpOption other)
 {
     return(this.Equals(other as TcpOptionTimestamp));
 }
Example #8
0
 internal override bool EqualsData(TcpOption other)
 {
     return(EqualsData(other as TcpOptionPartialOrderServiceProfile));
 }
Example #9
0
 public override bool Equals(TcpOption other)
 {
     return(this.Equals(other as TcpOptionPartialOrderConnectionPermitted));
 }
 internal override bool EqualsData(TcpOption other)
 {
     return(EqualsData(other as TcpOptionMd5Signature));
 }
 internal override bool EqualsData(TcpOption other)
 {
     return(EqualsData(other as TcpOptionEcho));
 }
 internal override bool EqualsData(TcpOption other)
 {
     return(EqualsData(other as TcpOptionAuthentication));
 }
Example #13
0
 internal override bool EqualsData(TcpOption other)
 {
     return(EqualsData(other as TcpOptionWindowScale));
 }
 internal override bool EqualsData(TcpOption other)
 {
     return(EqualsData(other as TcpOptionSelectiveAcknowledgment));
 }
Example #15
0
 public override sealed bool Equals(TcpOption other)
 {
     return(this.Equals(other as TcpOptionConnectionCountBase));
 }
 internal sealed override bool EqualsData(TcpOption other)
 {
     return(EqualsData(other as TcpOptionConnectionCountBase));
 }
 public override bool Equals(TcpOption other)
 {
     return(this.Equals(other as TcpOptionAlternateChecksumRequest));
 }
 /// <summary>
 /// Two connection count options are equal of they are of the same option type and have the same connection count.
 /// </summary>
 public sealed override bool Equals(TcpOption other)
 {
     return(Equals(other as TcpOptionConnectionCountBase));
 }
 /// <summary>
 /// Two alternate checksum data options are equal if they have the same data.
 /// </summary>
 public override bool Equals(TcpOption other)
 {
     return(Equals(other as TcpOptionAlternateChecksumData));
 }
 /// <summary>
 /// Two selective ack permitted options are always equal.
 /// </summary>
 public override bool Equals(TcpOption other)
 {
     return(Equals(other as TcpOptionSelectiveAcknowledgmentPermitted));
 }
Example #21
0
 internal override bool EqualsData(TcpOption other)
 {
     return(EqualsData(other as TcpOptionMaximumSegmentSize));
 }
 /// <summary>
 /// Two echo reply options are equal if they have the same info.
 /// </summary>
 public override bool Equals(TcpOption other)
 {
     return(Equals(other as TcpOptionEchoReply));
 }
Example #23
0
 /// <summary>
 /// Two unknown options are equal iff they are of equal type and equal data.
 /// </summary>
 public override bool Equals(TcpOption other)
 {
     return(Equals(other as TcpOptionUnknown));
 }
 internal override bool EqualsData(TcpOption other)
 {
     return(EqualsData(other as TcpOptionTimestamp));
 }
 public override bool Equals(TcpOption other)
 {
     return(this.Equals(other as TcpOptionPartialOrderServiceProfile));
 }
 public override bool Equals(TcpOption other)
 {
     return(this.Equals(other as TcpOptionMaximumSegmentSize));
 }
 internal override bool EqualsData(TcpOption other)
 {
     return(EqualsData(other as TcpOptionAlternateChecksumRequest));
 }
 internal override bool EqualsData(TcpOption other)
 {
     return(other is TcpOptionSelectiveAcknowledgmentPermitted);
 }