diff options
author | Michael Brown <mcb30@ipxe.org> | 2012-06-27 12:02:58 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2012-06-27 19:15:17 +0100 |
commit | 1d77d032168bd495c53589cca596131a992473c4 (patch) | |
tree | f6ade4bb1e404c1fcf66bfa647cd7d9273e66eb2 /src/arch | |
parent | 6a4ff519c8c21c8acbedb5e2db4d92c14e99d9f1 (diff) | |
download | ipxe-1d77d032168bd495c53589cca596131a992473c4.zip ipxe-1d77d032168bd495c53589cca596131a992473c4.tar.gz ipxe-1d77d032168bd495c53589cca596131a992473c4.tar.bz2 |
[tcpip] Allow for architecture-specific TCP/IP checksum routines
Calculating the TCP/IP checksum on received packets accounts for a
substantial fraction of the response latency.
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/x86/include/bits/tcpip.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/arch/x86/include/bits/tcpip.h b/src/arch/x86/include/bits/tcpip.h new file mode 100644 index 0000000..9ae8d92 --- /dev/null +++ b/src/arch/x86/include/bits/tcpip.h @@ -0,0 +1,12 @@ +#ifndef _BITS_TCPIP_H +#define _BITS_TCPIP_H + +/** @file + * + * Transport-network layer interface + * + */ + +FILE_LICENCE ( GPL2_OR_LATER ); + +#endif /* _BITS_TCPIP_H */ |