examples/multi_process: fix FreeBSD build
authorDavid Marchand <david.marchand@redhat.com>
Wed, 5 Jun 2019 11:30:26 +0000 (13:30 +0200)
committerThomas Monjalon <thomas@monjalon.net>
Wed, 5 Jun 2019 13:13:06 +0000 (15:13 +0200)
commit996839793a2b6af80c29ffe55f4361ae23665e69
tree0b1f81828c66eb10c24872d1b41a12ef0e1590a1
parentb9444280003a0cc758b63e9797ffc822a9ae2548
examples/multi_process: fix FreeBSD build

Caught on FreeBSD 12:

/usr/include/netinet/ip.h:71:17: error: field 'ip_src' has incomplete type
  struct in_addr ip_src,ip_dst; /* source and dest address */
                 ^~~~~~

On FreeBSD, netinet/ip.h is not auto sufficient like on Linux.
But actually, this header is not used in the example, just remove it.

Fixes: 764bf26873b9 ("add FreeBSD support")
Cc: stable@dpdk.org
Signed-off-by: David Marchand <david.marchand@redhat.com>
Tested-by: Bruce Richardson <bruce.richardson@intel.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
examples/multi_process/client_server_mp/mp_server/main.c