mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 16:24:13 +08:00
selftests: Set default protocol for raw sockets in nettest
IPPROTO_IP (0) is not valid for raw sockets. Default the protocol for raw sockets to IPPROTO_RAW if the protocol has not been set via the -P option. Signed-off-by: David Ahern <dsahern@kernel.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
77646b63ff
commit
897217b9a0
@ -1667,6 +1667,8 @@ int main(int argc, char *argv[])
|
||||
case 'R':
|
||||
args.type = SOCK_RAW;
|
||||
args.port = 0;
|
||||
if (!args.protocol)
|
||||
args.protocol = IPPROTO_RAW;
|
||||
break;
|
||||
case 'P':
|
||||
pe = getprotobyname(optarg);
|
||||
|
Loading…
Reference in New Issue
Block a user