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;'
This commit is contained in:
Michael Brown
2007-05-19 18:39:40 +00:00
parent 7c0a069f42
commit 3e2c6b6736
25 changed files with 429 additions and 665 deletions

View File

@@ -25,7 +25,7 @@
#define IP_TOS 0
#define IP_TTL 64
#define IP_FRAG_PKB_SIZE 1500
#define IP_FRAG_IOB_SIZE 1500
#define IP_FRAG_TIMEOUT 50
/* IP4 pseudo header */
@@ -63,15 +63,15 @@ struct frag_buffer {
struct in_addr src;
/* Destination network address */
struct in_addr dest;
/* Reassembled packet buffer */
struct pk_buff *frag_pkb;
/* Reassembled I/O buffer */
struct io_buffer *frag_iob;
/* Reassembly timer */
struct retry_timer frag_timer;
/* List of fragment reassembly buffers */
struct list_head list;
};
struct pk_buff;
struct io_buffer;
struct net_device;
struct net_protocol;
struct tcpip_protocol;