X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Flibsystemd-network%2Fsd-icmp6-nd.c;h=80915c34d6bcb66c3915b25fe41bea70ed98f4af;hp=10c5e5e87efd522f59d54a0aae98292c14273961;hb=836cf0905c4a8fe3358d6b0e005192d5ee51d3e2;hpb=03de7ed905ea95814b6a5008225d6fb708871e1f;ds=sidebyside diff --git a/src/libsystemd-network/sd-icmp6-nd.c b/src/libsystemd-network/sd-icmp6-nd.c index 10c5e5e87..80915c34d 100644 --- a/src/libsystemd-network/sd-icmp6-nd.c +++ b/src/libsystemd-network/sd-icmp6-nd.c @@ -282,6 +282,19 @@ static int icmp6_router_solicitation_timeout(sd_event_source *s, uint64_t usec, return 0; } +int sd_icmp6_nd_stop(sd_icmp6_nd *nd) { + assert_return(nd, -EINVAL); + assert_return(nd->event, -EINVAL); + + log_icmp6_nd(client, "Stop ICMPv6"); + + icmp6_nd_init(nd); + + nd->state = ICMP6_NEIGHBOR_DISCOVERY_IDLE; + + return 0; +} + int sd_icmp6_router_solicitation_start(sd_icmp6_nd *nd) { int r;