diff options
Diffstat (limited to 'net-mgmt/mac-telnet/files/patch-src_mactelnet.c')
-rw-r--r-- | net-mgmt/mac-telnet/files/patch-src_mactelnet.c | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/net-mgmt/mac-telnet/files/patch-src_mactelnet.c b/net-mgmt/mac-telnet/files/patch-src_mactelnet.c deleted file mode 100644 index d4dba703831d..000000000000 --- a/net-mgmt/mac-telnet/files/patch-src_mactelnet.c +++ /dev/null @@ -1,46 +0,0 @@ ---- src/mactelnet.c.orig 2024-08-12 21:08:19 UTC -+++ src/mactelnet.c -@@ -37,6 +37,7 @@ - #endif - #if defined(__FreeBSD__) || defined(__APPLE__) - #include <sys/types.h> -+#include <sys/mman.h> - #include <net/ethernet.h> - #else - #include <netinet/ether.h> -@@ -126,6 +127,8 @@ static unsigned int send_socket; - - static unsigned int send_socket; - -+static unsigned char *bcast_addr; -+ - static int handle_packet(unsigned char *data, int data_len); - - static void print_version() { -@@ -168,7 +171,7 @@ static int send_udp(struct mt_packet *packet, int retr - struct sockaddr_in socket_address; - socket_address.sin_family = AF_INET; - socket_address.sin_port = htons(MT_MACTELNET_PORT); -- socket_address.sin_addr.s_addr = htonl(INADDR_BROADCAST); -+ memcpy(&(socket_address.sin_addr), bcast_addr, IPV4_ALEN); - - sent_bytes = sendto(send_socket, packet->data, packet->size, 0, (struct sockaddr *)&socket_address, - sizeof(socket_address)); -@@ -470,6 +473,9 @@ static int find_interface() { - continue; - } - -+#if defined(__FreeBSD__) -+ setsockopt(testsocket, IPPROTO_IP, IP_ONESBCAST, &optval, sizeof(optval)); -+#endif - setsockopt(testsocket, SOL_SOCKET, SO_BROADCAST, &optval, sizeof(optval)); - setsockopt(testsocket, SOL_SOCKET, SO_REUSEADDR, &optval, sizeof(optval)); - -@@ -488,6 +494,7 @@ static int find_interface() { - send_socket = testsocket; - memcpy(srcmac, interface->mac_addr, ETH_ALEN); - active_interface = interface; -+ bcast_addr = interface->bcast_addr; - - /* Send a SESSIONSTART message with the current device */ - init_packet(&data, MT_PTYPE_SESSIONSTART, srcmac, dstmac, sessionkey, 0); |