aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMatthew Dillon <dillon@FreeBSD.org>2001-09-30 21:03:33 +0000
committerMatthew Dillon <dillon@FreeBSD.org>2001-09-30 21:03:33 +0000
commite2505aa6765ae571b731c45bdb36e1ffb55e1f3d (patch)
tree99d3968d57a174565d909cfde6e9b180b4d75a29 /lib
parentfc67f24833cde930de522695273889c5ddbf7484 (diff)
downloadsrc-e2505aa6765ae571b731c45bdb36e1ffb55e1f3d.tar.gz
src-e2505aa6765ae571b731c45bdb36e1ffb55e1f3d.zip
Add __FBSDID's to libalias
Notes
Notes: svn path=/head/; revision=84195
Diffstat (limited to 'lib')
-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 575f369c8fa4..e69966e3f48b 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 1a7fbf11b8ae..2c0587e23159 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 f8e56c650411..0e4cb074afdc 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 7e51e73d2f3c..e034dcc25d00 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 ec5aa8a7d3a5..bea75a715052 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 199cef039e1d..90a5f8603cda 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 dbab7a9bebe8..2d3d9acb3783 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 c009e038993e..f34f749a1829 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 f4cf33241ec3..027a7247ed08 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 5b25a325b950..c8c634843d49 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