Re: libifconfig: Initial code available, looking for feedback

2016-04-10 Thread Ravi Pokala
-Original Message- >Date: Sat, 09 Apr 2016 13:59:29 + >From: Marie Helene Kvello-Aune >To: freebsd-net@freebsd.org >Subject: libifconfig: Initial code available, looking for feedback >Message-ID: > >Content-Type: text/plain; charset=UTF-8 > >Hey! > >Please see previous thread[

Problem reports for freebsd-net@FreeBSD.org that need special attention

2016-04-10 Thread bugzilla-noreply
To view an individual PR, use: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=(Bug Id). The following is a listing of current problems submitted by FreeBSD users, which need special attention. These represent problem reports covering all versions including experimental development code and ob

Re: Create socket to send and receive arp packets - Freebsd

2016-04-10 Thread Andrey V. Elsukov
On 10.04.16 11:00, Wafa Hamzah wrote: > We are trying to send arp requests from user space using a RAW > socket. Our Linux reference suggest the following flags when creating > the socket: s = socket (PF_PACKET, SOCK_PACKET, htons(ETH_P_ARP))). > For FreeBSD support, we replaced PF_PACKET with PF

Re: Create socket to send and receive arp packets - Freebsd

2016-04-10 Thread Kristof Provost
> On 10 Apr 2016, at 10:00, Wafa Hamzah wrote: > > Hi, > > We are trying to send arp requests from user space using a RAW socket. > Our Linux reference suggest the following flags when creating the socket: s > = socket (PF_PACKET, SOCK_PACKET, htons(ETH_P_ARP))). > For FreeBSD support, we rep

Create socket to send and receive arp packets - Freebsd

2016-04-10 Thread Wafa Hamzah
Hi, We are trying to send arp requests from user space using a RAW socket. Our Linux reference suggest the following flags when creating the socket: s = socket (PF_PACKET, SOCK_PACKET, htons(ETH_P_ARP))). For FreeBSD support, we replaced PF_PACKET with PF_ARP , SOCK_PACKET with SOCK_RAW and hto