From owner-dev-commits-src-all@freebsd.org Mon May 31 11:05:13 2021 Return-Path: Delivered-To: dev-commits-src-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 838B0644A07; Mon, 31 May 2021 11:05:13 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Ftsrn2J8Sz4bNt; Mon, 31 May 2021 11:05:13 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2A6657182; Mon, 31 May 2021 11:05:13 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 14VB5CDD077020; Mon, 31 May 2021 11:05:12 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 14VB5C9Z077019; Mon, 31 May 2021 11:05:12 GMT (envelope-from git) Date: Mon, 31 May 2021 11:05:12 GMT Message-Id: <202105311105.14VB5C9Z077019@gitrepo.freebsd.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org From: Lutz Donnerhacke Subject: git: bec0a5dca76c - main - libalias: Remove LibAliasCheckNewLink MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: donner X-Git-Repository: src X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: bec0a5dca76c783d374ba9e9417208efde86b15f Auto-Submitted: auto-generated X-BeenThere: dev-commits-src-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the src repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 May 2021 11:05:13 -0000 The branch main has been updated by donner: URL: https://cgit.FreeBSD.org/src/commit/?id=bec0a5dca76c783d374ba9e9417208efde86b15f commit bec0a5dca76c783d374ba9e9417208efde86b15f Author: Lutz Donnerhacke AuthorDate: 2021-05-31 11:02:51 +0000 Commit: Lutz Donnerhacke CommitDate: 2021-05-31 11:04:11 +0000 libalias: Remove LibAliasCheckNewLink Finally drop the function in 14-CURRENT. Discussed with: kp Differential Revision: https://reviews.freebsd.org/D30275 --- sys/netinet/libalias/HISTORY | 3 +++ sys/netinet/libalias/alias.h | 3 --- sys/netinet/libalias/alias_db.c | 8 -------- 3 files changed, 3 insertions(+), 11 deletions(-) diff --git a/sys/netinet/libalias/HISTORY b/sys/netinet/libalias/HISTORY index c5bca59cac1f..ee18c7f70d01 100644 --- a/sys/netinet/libalias/HISTORY +++ b/sys/netinet/libalias/HISTORY @@ -143,3 +143,6 @@ Version 3.1: May, 2000 (Erik Salander, erik@whistle.com) Version 3.2: July, 2000 (Erik Salander, erik@whistle.com and Junichi Satoh, junichi@junichi.org) - Added support for streaming media (RTSP and PNA) aliasing. + +Version 3.3: May 2020 (donner) + - Dropped LibAliasCheckNewLink diff --git a/sys/netinet/libalias/alias.h b/sys/netinet/libalias/alias.h index 558a750b4fd8..58a190408210 100644 --- a/sys/netinet/libalias/alias.h +++ b/sys/netinet/libalias/alias.h @@ -123,9 +123,6 @@ int LibAliasSaveFragment(struct libalias *, void *_ptr); unsigned short LibAliasInternetChecksum(struct libalias *, unsigned short *_ptr, int _nbytes); void LibAliasSetTarget(struct libalias *, struct in_addr _target_addr); -/* never used and never worked, to be removed in FreeBSD 14 */ -int LibAliasCheckNewLink(struct libalias *); - /* Transparent proxying routines. */ int LibAliasProxyRule(struct libalias *, const char *_cmd); diff --git a/sys/netinet/libalias/alias_db.c b/sys/netinet/libalias/alias_db.c index 0273cc84773d..d7027f4e25c2 100644 --- a/sys/netinet/libalias/alias_db.c +++ b/sys/netinet/libalias/alias_db.c @@ -2540,14 +2540,6 @@ getout: return (res); } -/* never used and never worked, to be removed in FreeBSD 14 */ -int -LibAliasCheckNewLink(struct libalias *la) -{ - (void)la; - return (0); -} - #ifndef NO_FW_PUNCH /*****************