mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-19 00:13:33 +00:00
net/libndp: + Neighbor discovery protocol library.
Sponsored by: Serenity Cybersecurity, LLC
This commit is contained in:
parent
014a5f6c9d
commit
ceb716ddd3
@ -388,6 +388,7 @@
|
||||
SUBDIR += libmdf
|
||||
SUBDIR += libmediawiki
|
||||
SUBDIR += libnatpmp
|
||||
SUBDIR += libndp
|
||||
SUBDIR += libnet
|
||||
SUBDIR += libnfs
|
||||
SUBDIR += libngtcp2
|
||||
|
21
net/libndp/Makefile
Normal file
21
net/libndp/Makefile
Normal file
@ -0,0 +1,21 @@
|
||||
PORTNAME= libndp
|
||||
PORTVERSION= 1.8
|
||||
CATEGORIES= net
|
||||
|
||||
MAINTAINER= arrowd@FreeBSD.org
|
||||
COMMENT= Neighbor discovery library
|
||||
WWW= https://github.com/jpirko/libndp
|
||||
|
||||
LICENSE= LGPL21
|
||||
LICENSE_FILE= ${WRKSRC}/COPYING
|
||||
|
||||
USES= autoreconf libtool
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
USE_LDCONFIG= yes
|
||||
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= jpirko
|
||||
GH_TAGNAME= v${PORTVERSION}
|
||||
|
||||
.include <bsd.port.mk>
|
3
net/libndp/distinfo
Normal file
3
net/libndp/distinfo
Normal file
@ -0,0 +1,3 @@
|
||||
TIMESTAMP = 1678114865
|
||||
SHA256 (jpirko-libndp-1.8-v1.8_GH0.tar.gz) = c3ea76e253def89869651686a827da75b56896fe94fabd87d8c14b1d4588fd05
|
||||
SIZE (jpirko-libndp-1.8-v1.8_GH0.tar.gz) = 29145
|
29
net/libndp/files/patch-libndp_libndp.c
Normal file
29
net/libndp/files/patch-libndp_libndp.c
Normal file
@ -0,0 +1,29 @@
|
||||
--- libndp/libndp.c.orig 2021-05-20 09:39:25 UTC
|
||||
+++ libndp/libndp.c
|
||||
@@ -35,6 +35,17 @@
|
||||
#include <net/if.h>
|
||||
#include <sys/ioctl.h>
|
||||
|
||||
+#ifdef __FreeBSD__
|
||||
+#define s6_addr8 __u6_addr.__u6_addr8
|
||||
+#define s6_addr16 __u6_addr.__u6_addr16
|
||||
+#define s6_addr32 __u6_addr.__u6_addr32
|
||||
+#define SIOCGIFHWADDR SIOCGIFMAC
|
||||
+#define ND_RA_FLAG_HOME_AGENT ND_RA_FLAG_HA
|
||||
+#define ND_OPT_PI_FLAG_RADDR 0x20
|
||||
+#define ifr_hwaddr ifr_addr
|
||||
+#define ETH_ALEN 6
|
||||
+#endif
|
||||
+
|
||||
#include "ndp_private.h"
|
||||
#include "list.h"
|
||||
|
||||
@@ -209,7 +220,7 @@ resend:
|
||||
memcpy(&sin6.sin6_addr, addr, sizeof(sin6.sin6_addr));
|
||||
sin6.sin6_scope_id = ifindex;
|
||||
resend:
|
||||
- ret = sendto(sockfd, buf, buflen, flags, &sin6, sizeof(sin6));
|
||||
+ ret = sendto(sockfd, buf, buflen, flags, (struct sockaddr*)&sin6, sizeof(sin6));
|
||||
if (ret == -1) {
|
||||
switch(errno) {
|
||||
case EINTR:
|
3
net/libndp/pkg-descr
Normal file
3
net/libndp/pkg-descr
Normal file
@ -0,0 +1,3 @@
|
||||
This package contains a library which provides a wrapper for IPv6 Neighbor
|
||||
Discovery Protocol. It also provides a tool named ndptool for sending and
|
||||
receiving NDP messages.
|
8
net/libndp/pkg-plist
Normal file
8
net/libndp/pkg-plist
Normal file
@ -0,0 +1,8 @@
|
||||
bin/ndptool
|
||||
include/ndp.h
|
||||
lib/libndp.a
|
||||
lib/libndp.so
|
||||
lib/libndp.so.0
|
||||
lib/libndp.so.0.2.0
|
||||
libdata/pkgconfig/libndp.pc
|
||||
man/man8/ndptool.8.gz
|
Loading…
Reference in New Issue
Block a user