Signed-off-by: wumu.zsl <wumu.zsl@alibaba-inc.com>
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;
}
stream_putc(s, args->profilelen);
if (args->profilelen)
stream_put(s, args->profile, args->profilelen);
-
#else /* PTM BFD */
/* Encode timers if this is a registration message. */
if (args->command != ZEBRA_BFD_DEST_DEREGISTER) {
event_add_event(bsglobal.tm, _bfd_sess_send, bsp, 0, &bsp->installev);
}
-
void bfd_sess_uninstall(struct bfd_session_params *bsp)
{
bsp->lastev = BSE_UNINSTALL;