函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:include\net\xfrm.h Create Date:2022-07-27 20:43:41
Last Modify:2020-03-12 14:18:49 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:addr_match

函数原型:static inline bool addr_match(const void *token1, const void *token2, unsigned int prefixlen)

返回类型:bool

参数:

类型参数名称
const void *token1
const void *token2
unsigned intprefixlen
810  a1等于token1
811  a2等于token2
815  pdw等于prefixlen右移5位
816  pbi等于prefixlen按位与0x1f
818  如果pdw则如果内存比较
820  返回:false
822  如果pbi
825  mask等于htonl((0xffffffff) << (32 - pbi))
827  如果a1[pdw]按位异或a2[pdw]的值按位与mask则返回:false
831  返回:true