home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / sharewar / FFE / COMM.SWG / 0004_PKT.pas < prev    next >
Pascal/Delphi Source File  |  1996-09-03  |  3KB  |  56 lines

  1. --------c-PKT-------------------------------
  2.  
  3. From  FSC-0039. There may have been a  few changes since this doc so you
  4. may need to play with it a little.
  5.  
  6. Type-2 Packet Format (proposed, but currently in use)
  7. -----------------------------------------------------
  8.   Field    Ofs Siz Type  Description                Expected value(s)
  9.   -------  --- --- ----  -------------------------- -----------------
  10.   OrgNode  0x0   2 Word  Origination node address   0-65535
  11.   DstNode    2   2 Word  Destination node address   1-65535
  12.   Year       4   2  Int  Year packet generated      19??-2???
  13.   Month      6   2  Int  Month  "        "          0-11 (0=Jan)
  14.   Day        8   2  Int  Day    "        "          1-31
  15.   Hour       A   2  Int  Hour   "        "          0-23
  16.   Min        C   2  Int  Minute "        "          0-59
  17.   Sec        E   2  Int  Second "        "          0-59
  18.   Baud      10   2  Int  Baud Rate (not in use)     ????
  19.   PktVer    12   2  Int  Packet Version             Always 2
  20.   OrgNet    14   2 Word  Origination net address    1-65535
  21.   DstNet    16   2 Word  Destination net address    1-65535
  22.   PrdCodL   18   1 Byte  FTSC Product Code     (lo) 1-255
  23. * PVMajor   19   1 Byte  FTSC Product Rev   (major) 1-255
  24.   Password  1A   8 Char  Packet password            A-Z,0-9
  25. * QOrgZone  22   2  Int  Orig Zone (ZMailQ,QMail)   1-65535
  26. * QDstZone  24   2  Int  Dest Zone (ZMailQ,QMail)   1-65535
  27.   Filler    26   4 Byte  Spare Change               ?
  28. * PrdCodH   2A   1 Byte  FTSC Product Code     (hi) 1-255
  29. * PVMinor   2B   1 Byte  FTSC Product Rev   (minor) 1-255
  30. * CapWord   2C   2 Word  Capability Word            BitField
  31. * OrigZone  2E   2  Int  Origination Zone           1-65535
  32. * DestZone  30   2  Int  Destination Zone           1-65535
  33. * OrigPoint 32   2  Int  Origination Point          1-65535
  34. * DestPoint 34   2  Int  Destination Point          1-65535
  35. * ProdData  36   4 Long  Product-specific data      Whatever
  36.   PktTerm   3A   2 Word  Packet terminator          0000
  37.  
  38. * - extensions to FTS-0001
  39.  
  40. Ofs, Siz are in hex, other values are decimal.
  41.  
  42.  
  43. Zone/Point Aware Mail Processors (probably a partial list)
  44. ----------------------------------------------------------
  45.   Prod
  46.   Code Name - Uses QOrg/QDstZone Orig/DestZone Orig/DestPoint
  47.   ---- ----------- ------------- ------------- --------------
  48.   0x0C  FrontDoor  Reads/Updates      Yes           Yes
  49.   0x1A  DBridge        ?????          Yes           Yes
  50.   0x23  XRS        Reads/Updates      Yes           Yes
  51.   0x29  QMail           Yes          ?????      Not point-aware
  52.   0x35  ZMailQ          Yes          ?????      Not point-aware
  53.   0x3F  TosScan    Reads/Updates      Yes           Yes
  54.  
  55. }
  56.