diff options
| author | Michael Brown | 2007-05-19 20:39:40 +0200 |
|---|---|---|
| committer | Michael Brown | 2007-05-19 20:39:40 +0200 |
| commit | 3e2c6b6736729633c5d6c00cd31458a1c6a49730 (patch) | |
| tree | 8c9e1ed94b301680c9870ed09424e3a2a2e4bafa /src/include/gpxe/tcp.h | |
| parent | Add explicit "freeing" debug messages. (diff) | |
| download | ipxe-3e2c6b6736729633c5d6c00cd31458a1c6a49730.tar.gz ipxe-3e2c6b6736729633c5d6c00cd31458a1c6a49730.tar.xz ipxe-3e2c6b6736729633c5d6c00cd31458a1c6a49730.zip | |
pkbuff->iobuf changeover
Achieved via Perl using:
perl -pi -e 's/pk_buff/io_buffer/g; s/Packet buffer/I\/O buffer/ig; ' \
-e 's/pkbuff\.h/iobuf.h/g; s/pkb_/iob_/g; s/_pkb/_iob/g; ' \
-e 's/pkb/iobuf/g; s/PKB/IOB/g;'
Diffstat (limited to 'src/include/gpxe/tcp.h')
| -rw-r--r-- | src/include/gpxe/tcp.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/gpxe/tcp.h b/src/include/gpxe/tcp.h index 576898e86..f16ca0880 100644 --- a/src/include/gpxe/tcp.h +++ b/src/include/gpxe/tcp.h @@ -206,10 +206,10 @@ struct tcp_mss_option { /** Smallest port number on which a TCP connection can listen */ #define TCP_MIN_PORT 1 -/* Some PKB constants */ +/* Some IOB constants */ #define MAX_HDR_LEN 100 -#define MAX_PKB_LEN 1500 -#define MIN_PKB_LEN MAX_HDR_LEN + 100 /* To account for padding by LL */ +#define MAX_IOB_LEN 1500 +#define MIN_IOB_LEN MAX_HDR_LEN + 100 /* To account for padding by LL */ /** * Maxmimum advertised TCP window size |
