diff options
| author | Michael Brown | 2016-05-10 18:13:05 +0200 |
|---|---|---|
| committer | Michael Brown | 2016-05-11 09:16:36 +0200 |
| commit | 47931a4de53ccdeda061c59aa0919f152cf0dfdf (patch) | |
| tree | 70c3de07d8027780593203865ca32aff79aca90b /src/arch/arm64/include | |
| parent | [arm] Add optimised string functions for 64-bit ARM (diff) | |
| download | ipxe-47931a4de53ccdeda061c59aa0919f152cf0dfdf.tar.gz ipxe-47931a4de53ccdeda061c59aa0919f152cf0dfdf.tar.xz ipxe-47931a4de53ccdeda061c59aa0919f152cf0dfdf.zip | |
[arm] Add optimised TCP/IP checksumming for 64-bit ARM
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/arch/arm64/include')
| -rw-r--r-- | src/arch/arm64/include/bits/tcpip.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/arch/arm64/include/bits/tcpip.h b/src/arch/arm64/include/bits/tcpip.h new file mode 100644 index 000000000..68686534e --- /dev/null +++ b/src/arch/arm64/include/bits/tcpip.h @@ -0,0 +1,15 @@ +#ifndef _BITS_TCPIP_H +#define _BITS_TCPIP_H + +/** @file + * + * Transport-network layer interface + * + */ + +FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); + +extern uint16_t tcpip_continue_chksum ( uint16_t sum, const void *data, + size_t len ); + +#endif /* _BITS_TCPIP_H */ |
