github.com/geniusesgroup/libgo@v0.0.0-20220713101832-828057a9d3d4/tcp/option-timestamps.go (about)

     1  /* For license and copyright information please see LEGAL file in repository */
     2  
     3  package tcp
     4  
     5  import "../binary"
     6  
     7  type optionTimestamps []byte
     8  
     9  func (o optionTimestamps) Length() byte       { return o[0] }
    10  func (o optionTimestamps) Timestamps() uint16 { return binary.BigEndian.Uint16(o[1:]) }
    11  func (o optionTimestamps) NextOption() []byte { return o[8:] }
    12  
    13  func (o optionTimestamps) Process(s *Socket) error {
    14  	return nil
    15  }