<> <> <> CommBuffer: CEDAR DEFINITIONS = { Encapsulation: TYPE [7]; -- DriverType.Encapsulation Direction: TYPE = MACHINE DEPENDENT {none, recv, send}; Overhead: TYPE = MACHINE DEPENDENT RECORD [ next: REF ANY, network: REF ANY, iocb: LONG POINTER, socket: REF ANY, -- Beware of circles. direction: Direction, gap: [0..16384), encap: Encapsulation -- MUST BE LAST. The bits to/from the wire start in here. ]; }.