;;; -*- Mode:Lisp; Readtable:CL; Package:USER; Base:10; Patch-File:T -*- ;;; Patch file for System version 124.35 ;;; Reason: ;;; The resource matcher for a TCP:SIMPLE-ART-8B-BUFFER now looks for ;;; array-length = to the specified length, not >=. TCP really works ;;; best if the buffers are exactly the length of specified MSS... ;;; Written 8-Jun-88 11:10:28 by pld (Peter L. DeWolf) at site Gigamos Cambridge ;;; while running on Azathoth from band 1 ;;; with Experimental System 124.25, Experimental Local-File 74.1, Experimental File-Server 23.1, Experimental Unix-Interface 12.0, Experimental ZMail 72.1, Experimental Tape 23.6, Experimental Lambda-Diag 16.1, microcode 1756, SDU Boot Tape 3.14, SDU ROM 8, the old ones. ; From modified file DJ: L.NETWORK.IP-TCP.KERNEL; TCP-STREAM.LISP#60 at 8-Jun-88 11:12:12 #10R TCP#: (COMPILER-LET ((*PACKAGE* (GLOBAL:PKG-FIND-PACKAGE "TCP"))) (COMPILER::PATCH-SOURCE-FILE "SYS: NETWORK; IP-TCP; KERNEL; TCP-STREAM  " (global:defresource simple-art-8b-buffer (size) :constructor (make-array size :element-type '(unsigned-byte 8.) :fill-pointer 0) :matcher (= size (array-length object))) ))