|
Revision tags: release/13.4.0-p5, release/13.5.0-p1, release/14.2.0-p3, release/13.5.0, release/14.2.0-p2, release/14.1.0-p8, release/13.4.0-p4, release/14.1.0-p7, release/14.2.0-p1, release/13.4.0-p3, release/14.2.0, release/13.4.0, release/14.1.0, release/13.3.0, release/14.0.0 |
|
| #
d0b2dbfa |
| 16-Aug-2023 |
Warner Losh <[email protected]> |
Remove $FreeBSD$: one-line sh pattern
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
|
|
Revision tags: release/13.2.0, release/12.4.0, release/13.1.0, release/12.3.0, release/13.0.0, release/12.2.0, release/11.4.0, release/12.1.0, release/11.3.0, release/12.0.0, release/11.2.0, release/10.4.0, release/11.1.0, release/11.0.1, release/11.0.0, release/10.3.0, release/10.2.0, release/10.1.0, release/9.3.0, release/10.0.0, release/9.2.0, release/8.4.0, release/9.1.0, release/8.3.0_cvs, release/8.3.0, release/9.0.0, release/7.4.0_cvs, release/8.2.0_cvs, release/7.4.0, release/8.2.0, release/8.1.0_cvs, release/8.1.0, release/7.3.0_cvs, release/7.3.0, release/8.0.0_cvs, release/8.0.0, release/7.2.0_cvs, release/7.2.0, release/7.1.0_cvs, release/7.1.0, release/6.4.0_cvs, release/6.4.0, release/7.0.0_cvs, release/7.0.0, release/6.3.0_cvs, release/6.3.0, release/6.2.0_cvs, release/6.2.0 |
|
| #
e640c422 |
| 27-Sep-2006 |
Ruslan Ermilov <[email protected]> |
- Removed a copyright from makefile. - Added ${.CURDIR} to .include "...". - Whitespace fixes.
OK'ed by: piso
|
| #
be4f3cd0 |
| 26-Sep-2006 |
Paolo Pisati <[email protected]> |
Summer of Code 2005: improve libalias - part 1 of 2
With the first part of my previous Summer of Code work, we get:
-made libalias modular:
-support for 'particular' protocols (like ftp/irc/etcet
Summer of Code 2005: improve libalias - part 1 of 2
With the first part of my previous Summer of Code work, we get:
-made libalias modular:
-support for 'particular' protocols (like ftp/irc/etcetc) is no more hardcoded inside libalias, but it's available through external modules loadable at runtime
-modules are available both in kernel (/boot/kernel/alias_*.ko) and user land (/lib/libalias_*)
-protocols/applications modularized are: cuseeme, ftp, irc, nbt, pptp, skinny and smedia
-added logging support for kernel side
-cleanup
After a buildworld, do a 'mergemaster -i' to install the file libalias.conf in /etc or manually copy it.
During startup (and after every HUP signal) user land applications running the new libalias will try to read a file in /etc called libalias.conf: that file contains the list of modules to load.
User land applications affected by this commit are ppp and natd: if libalias.conf is present in /etc you won't notice any difference.
The only kernel land bit affected by this commit is ng_nat: if you are using ng_nat, and it doesn't correctly handle ftp/irc/etcetc sessions anymore, remember to kldload the correspondent module (i.e. kldload alias_ftp).
General information and details about the inner working are available in the libalias man page under the section 'MODULAR ARCHITECTURE (AND ipfw(4) SUPPORT)'.
NOTA BENE: this commit affects _ONLY_ libalias, ipfw in-kernel nat support will be part of the next libalias-related commit.
Approved by: glebius Reviewed by: glebius, ru
show more ...
|
|
Revision tags: release/5.5.0_cvs, release/5.5.0, release/6.1.0_cvs, release/6.1.0, release/6.0.0_cvs, release/6.0.0 |
|
| #
a84020c2 |
| 22-Jul-2005 |
Ken Smith <[email protected]> |
Bump the shared library version number of all libraries that have not been bumped since RELENG_5.
Reviewed by: ru Approved by: re (not needed for commit check but in principle...)
|
|
Revision tags: release/5.4.0_cvs, release/5.4.0 |
|
| #
e0408a6e |
| 04-May-2005 |
Gleb Smirnoff <[email protected]> |
Build userland libalias using src/sys/netinet/libalias.
Reviewed by: ru Repocopy by: peter
|
|
Revision tags: release/4.11.0_cvs, release/4.11.0, release/5.3.0_cvs, release/5.3.0 |
|
| #
a35d8893 |
| 24-Oct-2004 |
Ruslan Ermilov <[email protected]> |
For variables that are only checked with defined(), don't provide any fake value.
|
| #
de47739e |
| 06-Jul-2004 |
Dag-Erling Smørgrav <[email protected]> |
Push WARNS back up to 6, but define NO_WERROR; I want the warts out in the open where people can see them and hopefully fix them.
|
| #
95347a8e |
| 06-Jul-2004 |
Dag-Erling Smørgrav <[email protected]> |
Temporarily lower WARNS to 3 while I figure out the alignment issues on alpha.
|
| #
ed01a582 |
| 05-Jul-2004 |
Dag-Erling Smørgrav <[email protected]> |
Make libalias WARNS?=6-clean. This mostly involves renaming variables named link, foo_link or link_foo to lnk, foo_lnk or lnk_foo, fixing signed / unsigned comparisons, and shoving unused function a
Make libalias WARNS?=6-clean. This mostly involves renaming variables named link, foo_link or link_foo to lnk, foo_lnk or lnk_foo, fixing signed / unsigned comparisons, and shoving unused function arguments under the carpet.
I was hoping WARNS?=6 might reveal more serious problems, and perhaps the source of the -O2 breakage, but found no smoking gun.
show more ...
|
|
Revision tags: release/4.10.0_cvs, release/4.10.0 |
|
| #
e271f829 |
| 31-Mar-2004 |
Dag-Erling Smørgrav <[email protected]> |
Raise WARNS level to 2.
|
|
Revision tags: release/5.2.1_cvs, release/5.2.1 |
|
| #
5e289f9e |
| 17-Jan-2004 |
Poul-Henning Kamp <[email protected]> |
Mostly mechanical rework of libalias:
Makes it possible to have multiple packet aliasing instances in a single process by moving all static and global variables into an instance structure called "st
Mostly mechanical rework of libalias:
Makes it possible to have multiple packet aliasing instances in a single process by moving all static and global variables into an instance structure called "struct libalias".
Redefine a new API based on s/PacketAlias/LibAlias/g
Add new "instance" argument to all functions in the new API.
Implement old API in terms of the new API.
show more ...
|
|
Revision tags: release/5.2.0_cvs, release/5.2.0, release/4.9.0_cvs, release/4.9.0 |
|
| #
b07fbc17 |
| 23-Sep-2003 |
Joe Marcus Clarke <[email protected]> |
Add Cisco Skinny Station protocol support to libalias, natd, and ppp. Skinny is the protocol used by Cisco IP phones to talk to Cisco Call Managers. With this code, one can use a Cisco IP phone behi
Add Cisco Skinny Station protocol support to libalias, natd, and ppp. Skinny is the protocol used by Cisco IP phones to talk to Cisco Call Managers. With this code, one can use a Cisco IP phone behind a FreeBSD NAT gateway.
Currently, having the Call Manager behind the NAT gateway is not supported. More information on enabling Skinny support in libalias, natd, and ppp can be found in those applications' manpages.
PR: 55843 Reviewed by: ru Approved by: ru MFC after: 30 days
show more ...
|
| #
4f4a104e |
| 18-Aug-2003 |
David E. O'Brien <[email protected]> |
style.Makefile(5)
|
| #
41d8423f |
| 17-Aug-2003 |
Gordon Tetlow <[email protected]> |
Stage 3 of dynamic root support. Make all the libraries needed to run binaries in /bin and /sbin installed in /lib. Only the versioned files reside in /lib, the .so symlink continues to live /usr/lib
Stage 3 of dynamic root support. Make all the libraries needed to run binaries in /bin and /sbin installed in /lib. Only the versioned files reside in /lib, the .so symlink continues to live /usr/lib so the toolchain doesn't need to be modified.
show more ...
|
|
Revision tags: release/5.1.0_cvs, release/5.1.0 |
|
| #
bfd73878 |
| 20-Apr-2003 |
David E. O'Brien <[email protected]> |
style.Makefile(5)
|
|
Revision tags: release/4.8.0_cvs, release/4.8.0, release/5.0.0_cvs, release/5.0.0, release/4.7.0_cvs |
|
| #
224af215 |
| 28-Sep-2002 |
Peter Wemm <[email protected]> |
Zap now-unused SHLIB_MINOR
|
|
Revision tags: release/4.6.2_cvs, release/4.6.2, release/4.6.1, release/4.6.0_cvs, release/4.5.0_cvs, release/4.4.0_cvs, release/4.3.0_cvs, release/4.3.0 |
|
| #
4a558355 |
| 27-Mar-2001 |
Ruslan Ermilov <[email protected]> |
MAN[1-9] -> MAN.
|
|
Revision tags: release/4.2.0, release/4.1.1_cvs |
|
| #
4996f025 |
| 15-Sep-2000 |
Ruslan Ermilov <[email protected]> |
Add -Wmissing-prototypes.
|
| #
642e43b3 |
| 26-Jul-2000 |
Archie Cobbs <[email protected]> |
Add address translation support for RTSP/RTP used by RealPlayer and Quicktime streaming media applications.
Add a BUGS section to the man page.
Submitted by: Erik Salander <[email protected]>
|
|
Revision tags: release/4.1.0, release/3.5.0_cvs |
|
| #
d1558371 |
| 20-Jun-2000 |
Ruslan Ermilov <[email protected]> |
- Removed PacketAliasPptp() API function. - SHLIB_MAJOR++.
|
| #
55a39fc5 |
| 20-Jun-2000 |
Ruslan Ermilov <[email protected]> |
Added true support for PPTP aliasing. Some nice features include:
- Multiple PPTP clients behind NAT to the same or different servers.
- Single PPTP server behind NAT -- you just need to redirect
Added true support for PPTP aliasing. Some nice features include:
- Multiple PPTP clients behind NAT to the same or different servers.
- Single PPTP server behind NAT -- you just need to redirect TCP port 1723 to a local machine. Multiple servers behind NAT is possible but would require a simple API change.
- No API changes!
For more information on how this works see comments at the start of the alias_pptp.c.
PacketAliasPptp() is no longer necessary and will be removed soon.
Submitted by: Erik Salander <[email protected]> Reviewed by: ru Rewritten by: ru Reviewed by: Erik Salander <[email protected]>
show more ...
|
|
Revision tags: release/4.0.0_cvs |
|
| #
d05257b0 |
| 14-Jan-2000 |
Rodney W. Grimes <[email protected]> |
Replace beforeinstall target with new variables used by .mk system.
Reviewed by: marcel, and make world
|
|
Revision tags: release/3.4.0_cvs, release/3.3.0_cvs |
|
| #
7f3dea24 |
| 28-Aug-1999 |
Peter Wemm <[email protected]> |
$Id$ -> $FreeBSD$
|
|
Revision tags: release/3.2.0 |
|
| #
6961f3da |
| 23-May-1999 |
Brian Somers <[email protected]> |
brucify Mentioned by: [email protected]
|
| #
7d96f4ef |
| 27-Feb-1999 |
Brian Somers <[email protected]> |
Version 3.0: January 1, 1999 - Transparent proxying support added. - PPTP redirecting support added based on patches contributed by Dru Nelson <[email protected]>.
Submitted by:
Version 3.0: January 1, 1999 - Transparent proxying support added. - PPTP redirecting support added based on patches contributed by Dru Nelson <[email protected]>.
Submitted by: Charles Mott <[email protected]>
show more ...
|