summaryrefslogtreecommitdiffstats
path: root/src/arch/loong64/include/bits/tcpip.h
blob: fc3c5b3ff4a2b75b8a8305dd8123cab6de8d4db1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef _BITS_TCPIP_H
#define _BITS_TCPIP_H

/** @file
 *
 * Transport-network layer interface
 *
 */

FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );

static inline __attribute__ (( always_inline )) uint16_t
tcpip_continue_chksum ( uint16_t partial, const void *data, size_t len ) {

	/* Not yet optimised */
	return generic_tcpip_continue_chksum ( partial, data, len );
}

#endif /* _BITS_TCPIP_H */