mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
libalias: Remove LibAliasCheckNewLink
Finally drop the function in 14-CURRENT. Discussed with: kp Differential Revision: https://reviews.freebsd.org/D30275
This commit is contained in:
parent
bfd41ba1fe
commit
bec0a5dca7
3 changed files with 3 additions and 11 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
/*****************
|
||||
|
|
|
|||
Loading…
Reference in a new issue