aboutsummaryrefslogtreecommitdiffstats
path: root/wsutil
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2014-06-21 10:32:12 -0700
committerGuy Harris <guy@alum.mit.edu>2014-06-21 17:33:05 +0000
commit43443af0acc93e47a145688171049af65eed762f (patch)
tree2e2dae2d9706981a43a1c6f2edd0f1e7771eaec3 /wsutil
parent37b903d7abab78a6f13b61feb88f62f2fa638151 (diff)
Move get_copyright_info() to wsutil.
Change-Id: I75c1c747cd2b4a9845c659636582d54b2caecf1a Reviewed-on: https://code.wireshark.org/review/2510 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'wsutil')
-rw-r--r--wsutil/CMakeLists.txt1
-rw-r--r--wsutil/Makefile.common2
-rw-r--r--wsutil/copyright_info.c37
-rw-r--r--wsutil/copyright_info.h42
4 files changed, 82 insertions, 0 deletions
diff --git a/wsutil/CMakeLists.txt b/wsutil/CMakeLists.txt
index 1be0bc0201..2c871b7afb 100644
--- a/wsutil/CMakeLists.txt
+++ b/wsutil/CMakeLists.txt
@@ -44,6 +44,7 @@ set(WSUTIL_FILES
airpdcap_wep.c
base64.c
bitswap.c
+ copyright_info.c
crash_info.c
crc10.c
crc16.c
diff --git a/wsutil/Makefile.common b/wsutil/Makefile.common
index 3ff030dece..ccf5033e91 100644
--- a/wsutil/Makefile.common
+++ b/wsutil/Makefile.common
@@ -32,6 +32,7 @@ LIBWSUTIL_SRC = \
airpdcap_wep.c \
base64.c \
bitswap.c \
+ copyright_info.c \
crash_info.c \
crc6.c \
crc7.c \
@@ -73,6 +74,7 @@ LIBWSUTIL_INCLUDES = \
bits_ctz.h \
bits_count_ones.h \
bitswap.h \
+ copyright_info.h \
crash_info.h \
crc6.h \
crc7.h \
diff --git a/wsutil/copyright_info.c b/wsutil/copyright_info.c
new file mode 100644
index 0000000000..f95a584b57
--- /dev/null
+++ b/wsutil/copyright_info.c
@@ -0,0 +1,37 @@
+/* copyright_info.c
+ * Routines to report copyright information for stuff used by Wireshark
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+#include "config.h"
+
+#include <wsutil/copyright_info.h>
+
+/*
+ * Get copyright information.
+ */
+const char *
+get_copyright_info(void)
+{
+ return
+"Copyright 1998-2014 Gerald Combs <gerald@wireshark.org> and contributors.\n"
+"This is free software; see the source for copying conditions. There is NO\n"
+"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n";
+}
diff --git a/wsutil/copyright_info.h b/wsutil/copyright_info.h
new file mode 100644
index 0000000000..73601515f0
--- /dev/null
+++ b/wsutil/copyright_info.h
@@ -0,0 +1,42 @@
+/* copyright_info.h
+ * Declarations of outines to report copyright information for stuff used
+ * by Wireshark
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+#ifndef __WSUTIL_COPYRIGHT_INFO_H__
+#define __WSUTIL_COPYRIGHT_INFO_H__
+
+#include "ws_symbol_export.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif /* __cplusplus */
+
+/*
+ * Get copyright information.
+ */
+WS_DLL_PUBLIC const char *get_copyright_info(void);
+
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
+#endif /* __WSUTIL_COPYRIGHT_INFO_H__ */