On Thu, Mar 31, 2016 at 10:42:19AM +0200, Sebastien Marie wrote:
> On Wed, Mar 30, 2016 at 09:17:52PM +0200, Vincent Gross wrote:
> >
> > Hi, can you apply this diff and check if the problem persists ?
> >
> > diff --git a/sys/netinet6/udp6_output.c b/sys/netinet6/udp6_output.c
> > index f9473d8..fa40fcf 100644
> > --- a/sys/netinet6/udp6_output.c
> > +++ b/sys/netinet6/udp6_output.c
> > @@ -171,6 +171,7 @@ udp6_output(struct inpcb *in6p, struct mbuf *m, struct
> > mbuf *addr6,
> > if (!IN6_ARE_ADDR_EQUAL(&in6p->inp_laddr6, laddr)) {
> > valid.sin6_addr = *laddr;
> > valid.sin6_port = in6p->inp_lport;
> > + valid.sin6_scope_id = 0;
> > valid.sin6_family = AF_INET6;
> > valid.sin6_len = sizeof(valid);
> > error = in6_pcbaddrisavail(in6p, &valid, 0, p);
> >
>
> yes, it corrects my problem with dhcpcd.
fine, then OK bluhm@