From df49e49bc7834ad3257d1b10972854a14605a67c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Mi=C5=82ecki?= Date: Wed, 15 Feb 2017 11:46:57 +0100 Subject: mdns: update and rename package to the umdns MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This update includes numerous small fixes for: 1) Interfaces setup 2) Packets parsing 3) Sending replies Without this there were multiple problems with exchanging information between (u)mdns and other implementations (including (u)mdns as well). This also follows project rename to umdns which was required to avoid confusion with Apple's mdnsd from mDNSResponder project. Signed-off-by: Rafał Miłecki --- package/network/services/mdns/Makefile | 47 ---------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 package/network/services/mdns/Makefile (limited to 'package/network/services/mdns/Makefile') diff --git a/package/network/services/mdns/Makefile b/package/network/services/mdns/Makefile deleted file mode 100644 index 2c6d1b73ef..0000000000 --- a/package/network/services/mdns/Makefile +++ /dev/null @@ -1,47 +0,0 @@ -# -# Copyright (C) 2014 OpenWrt.org -# -# This is free software, licensed under the GNU General Public License v2. -# See /LICENSE for more information. -# - -include $(TOPDIR)/rules.mk - -PKG_NAME:=mdns -PKG_RELEASE:=1 - -PKG_SOURCE_URL=$(LEDE_GIT)/project/mdnsd.git -PKG_SOURCE_PROTO:=git -PKG_SOURCE_DATE:=2017-01-31 -PKG_SOURCE_VERSION:=9cbbb141068c12ed032736e20f982e2a0fb43edc -PKG_MIRROR_HASH:=2b981bd2f695f4da63b51be33b42dcda132c6adab227eda2f68a5c534284aea9 - -PKG_MAINTAINER:=John Crispin -PKG_LICENSE:=LGPL-2.1 - -include $(INCLUDE_DIR)/package-seccomp.mk -include $(INCLUDE_DIR)/package.mk -include $(INCLUDE_DIR)/cmake.mk - -define Package/mdns - SECTION:=net - CATEGORY:=Network - TITLE:=OpenWrt Multicast DNS Daemon - DEPENDS:=+libubox +libubus +libblobmsg-json -endef - -TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include - -define Package/mdns/conffiles -/etc/config/mdns -endef - -define Package/mdns/install - $(INSTALL_DIR) $(1)/usr/sbin $(1)/etc/init.d $(1)/etc/config - $(INSTALL_BIN) $(PKG_BUILD_DIR)/mdns $(1)/usr/sbin/ - $(INSTALL_BIN) ./files/mdns.init $(1)/etc/init.d/mdns - $(INSTALL_CONF) ./files/mdns.config $(1)/etc/config/mdns - $(call InstallSeccomp,$(1),./files/mdns.json) -endef - -$(eval $(call BuildPackage,mdns)) -- cgit v1.2.3