Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1.  
  2. struct  IPv4_header
  3.  
  4.         VersionAndIHL           db ?    ; Version[0-3 bits] and IHL(header length)[4-7 bits]
  5.         TypeOfService           db ?    ; precedence [7-5] minimize delay [4], maximize throughput [3], maximize riliability [2] minimize momentary cost [1] and zero [0]
  6.         TotalLength             dw ?
  7.         Identification          dw ?
  8.         FlagsAndFragmentOffset  dw ?    ; Flags[0-2] and FragmentOffset[3-15]
  9.         TimeToLive              db ?    ;
  10.         Protocol                db ?
  11.         HeaderChecksum          dw ?
  12.         SourceAddress           dd ?
  13.         DestinationAddress      dd ?
  14.  
  15. ends