diff options
| author | wumu.zsl <wumu.zsl@alibaba-inc.com> | 2025-01-23 03:24:43 +0000 | 
|---|---|---|
| committer | wumu.zsl <wumu.zsl@alibaba-inc.com> | 2025-01-23 03:25:02 +0000 | 
| commit | e766b68a189acfe12e909c39e8687d660a36849f (patch) | |
| tree | 36253392db9f6c3ea586e79752671241807d0600 /bfdd | |
| parent | 0ef6003167473a54bdb6db1ccf29c95babb17752 (diff) | |
bfdd: Fix CI build issue on kernel with no IPV6_HDRINCL
Signed-off-by: wumu.zsl <wumu.zsl@alibaba-inc.com>
Diffstat (limited to 'bfdd')
| -rw-r--r-- | bfdd/bfd_packet.c | 6 | 
1 files changed, 4 insertions, 2 deletions
diff --git a/bfdd/bfd_packet.c b/bfdd/bfd_packet.c index 379e35c0f4..cecced3ccc 100644 --- a/bfdd/bfd_packet.c +++ b/bfdd/bfd_packet.c @@ -2107,16 +2107,18 @@ int bp_peer_srh_socketv6(struct bfd_session *bs)  		close(sd);  		return -1;  	} -#if defined(HAVE_IPV6_HDRINCL) +#ifdef IPV6_HDRINCL  	int on = 1;  	/*manage the IP6 header all on own onwn*/  	if (setsockopt(sd, IPPROTO_IPV6, IPV6_HDRINCL, &on, sizeof(on))) { +#else +	if (true) { +#endif  		zlog_err("setsockopt IPV6_HDRINCL error: %s", strerror(errno));  		close(sd);  		return -1;  	} -#endif  	return sd;  }  | 
