summaryrefslogtreecommitdiffstats
path: root/lib/libalias
diff options
context:
space:
mode:
authordillon <dillon@FreeBSD.org>2001-09-30 21:03:33 +0000
committerdillon <dillon@FreeBSD.org>2001-09-30 21:03:33 +0000
commit384d1b28611dabe8a1fbdec78cfe89bef5012070 (patch)
tree99d3968d57a174565d909cfde6e9b180b4d75a29 /lib/libalias
parent6815a9f8598bb19fa58c494739a7a907f10cb521 (diff)
downloadFreeBSD-src-384d1b28611dabe8a1fbdec78cfe89bef5012070.zip
FreeBSD-src-384d1b28611dabe8a1fbdec78cfe89bef5012070.tar.gz
Add __FBSDID's to libalias
Diffstat (limited to 'lib/libalias')
-rw-r--r--lib/libalias/alias.c5
-rw-r--r--lib/libalias/alias_cuseeme.c5
-rw-r--r--lib/libalias/alias_db.c5
-rw-r--r--lib/libalias/alias_ftp.c5
-rw-r--r--lib/libalias/alias_irc.c5
-rw-r--r--lib/libalias/alias_nbt.c7
-rw-r--r--lib/libalias/alias_pptp.c5
-rw-r--r--lib/libalias/alias_proxy.c5
-rw-r--r--lib/libalias/alias_smedia.c5
-rw-r--r--lib/libalias/alias_util.c6
10 files changed, 32 insertions, 21 deletions
diff --git a/lib/libalias/alias.c b/lib/libalias/alias.c
index 575f369..e69966e 100644
--- a/lib/libalias/alias.c
+++ b/lib/libalias/alias.c
@@ -24,10 +24,11 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
Alias.c provides supervisory control for the functions of the
packet aliasing software. It consists of routines to monitor
diff --git a/lib/libalias/alias_cuseeme.c b/lib/libalias/alias_cuseeme.c
index 1a7fbf1..2c0587e 100644
--- a/lib/libalias/alias_cuseeme.c
+++ b/lib/libalias/alias_cuseeme.c
@@ -24,10 +24,11 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/types.h>
#include <netinet/in_systm.h>
#include <netinet/in.h>
diff --git a/lib/libalias/alias_db.c b/lib/libalias/alias_db.c
index f8e56c6..0e4cb07 100644
--- a/lib/libalias/alias_db.c
+++ b/lib/libalias/alias_db.c
@@ -24,10 +24,11 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
Alias_db.c encapsulates all data structures used for storing
packet aliasing data. Other parts of the aliasing software
diff --git a/lib/libalias/alias_ftp.c b/lib/libalias/alias_ftp.c
index 7e51e73..e034dcc 100644
--- a/lib/libalias/alias_ftp.c
+++ b/lib/libalias/alias_ftp.c
@@ -22,10 +22,11 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
Alias_ftp.c performs special processing for FTP sessions under
TCP. Specifically, when a PORT/EPRT command from the client
diff --git a/lib/libalias/alias_irc.c b/lib/libalias/alias_irc.c
index ec5aa8a..bea75a7 100644
--- a/lib/libalias/alias_irc.c
+++ b/lib/libalias/alias_irc.c
@@ -22,10 +22,11 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/* Alias_irc.c intercepts packages contain IRC CTCP commands, and
changes DCC commands to export a port on the aliasing host instead
of an aliased host.
diff --git a/lib/libalias/alias_nbt.c b/lib/libalias/alias_nbt.c
index 199cef0..90a5f86 100644
--- a/lib/libalias/alias_nbt.c
+++ b/lib/libalias/alias_nbt.c
@@ -23,13 +23,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
- *
* TODO:
* oClean up.
* oConsidering for word alignment for other platform.
*/
+
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
alias_nbt.c performs special processing for NetBios over TCP/IP
sessions by UDP.
diff --git a/lib/libalias/alias_pptp.c b/lib/libalias/alias_pptp.c
index dbab7a9..2d3d9ac 100644
--- a/lib/libalias/alias_pptp.c
+++ b/lib/libalias/alias_pptp.c
@@ -34,10 +34,11 @@
* OF SUCH DAMAGE.
*
* Author: Erik Salander <erik@whistle.com>
- *
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
Alias_pptp.c performs special processing for PPTP sessions under TCP.
Specifically, watch PPTP control messages and alias the Call ID or the
diff --git a/lib/libalias/alias_proxy.c b/lib/libalias/alias_proxy.c
index c009e03..f34f749 100644
--- a/lib/libalias/alias_proxy.c
+++ b/lib/libalias/alias_proxy.c
@@ -22,10 +22,11 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/* file: alias_proxy.c
This file encapsulates special operations related to transparent
diff --git a/lib/libalias/alias_smedia.c b/lib/libalias/alias_smedia.c
index f4cf332..027a724 100644
--- a/lib/libalias/alias_smedia.c
+++ b/lib/libalias/alias_smedia.c
@@ -61,10 +61,11 @@
* Authors: Erik Salander <erik@whistle.com>
* Junichi SATOH <junichi@astec.co.jp>
* <junichi@junichi.org>
- *
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
Alias_smedia.c is meant to contain the aliasing code for streaming media
protocols. It performs special processing for RSTP sessions under TCP.
diff --git a/lib/libalias/alias_util.c b/lib/libalias/alias_util.c
index 5b25a32..c8c6348 100644
--- a/lib/libalias/alias_util.c
+++ b/lib/libalias/alias_util.c
@@ -22,10 +22,12 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
+
/*
Alias_util.c contains general utilities used by other functions
in the packet aliasing module. At the moment, there are functions
OpenPOWER on IntegriCloud