CommBuffer.mesa
Copyright © 1986 by Xerox Corporation. All rights reserved.
Hal Murray, April 4, 1986 5:22:16 am PST
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.
];
}.