* [PATCH] Change "IP address" to more general term
@ 2006-09-08 23:50 Eamon Walsh
2006-09-17 14:15 ` Steve Grubb
0 siblings, 1 reply; 2+ messages in thread
From: Eamon Walsh @ 2006-09-08 23:50 UTC (permalink / raw)
To: linux-audit
[-- Attachment #1: Type: text/plain, Size: 757 bytes --]
The attached patch changes "IP address" to "network address" in the
libaudit header file comments and documentation.
Not making reference to a specific protocol will help me justify the use
of libaudit to some upstream maintainers.
Signed-off-by: Eamon Walsh <ewalsh@tycho.nsa.gov>
docs/audit_log_acct_message.3 | 2 +-
docs/audit_log_user_avc_message.3 | 2 +-
docs/audit_log_user_comm_message.3 | 2 +-
docs/audit_log_user_message.3 | 2 +-
docs/audit_log_user_semange_message.3 | 2 +-
docs/ausearch.8 | 2 +-
lib/audit_logging.c | 10 +++++-----
7 files changed, 11 insertions(+), 11 deletions(-)
--
Eamon Walsh <ewalsh@tycho.nsa.gov>
National Security Agency
[-- Attachment #2: ip2net.patch --]
[-- Type: text/x-patch, Size: 5980 bytes --]
diff -Naur audit-1.2.6/docs/audit_log_acct_message.3 audit-new/docs/audit_log_acct_message.3
--- audit-1.2.6/docs/audit_log_acct_message.3 2006-04-06 17:21:14.000000000 -0400
+++ audit-new/docs/audit_log_acct_message.3 2006-09-08 17:08:35.000000000 -0400
@@ -20,7 +20,7 @@
name - user's account or group name. If not available use NULL.
id - uid or gid that the operation is being performed on. This is used only when user is NULL.
host - The hostname if known
-addr - The IP address of the user
+addr - The network address of the user
tty - The tty of the user, if NULL will attempt to figure out
result - 1 is "success" and 0 is "failed"
.if
diff -Naur audit-1.2.6/docs/audit_log_user_avc_message.3 audit-new/docs/audit_log_user_avc_message.3
--- audit-1.2.6/docs/audit_log_user_avc_message.3 2006-04-06 17:21:14.000000000 -0400
+++ audit-new/docs/audit_log_user_avc_message.3 2006-09-08 17:08:57.000000000 -0400
@@ -16,7 +16,7 @@
type - type of message, ex: AUDIT_USER_AVC
message - the message being sent
hostname - the hostname if known
-addr - The IP address of the user
+addr - The network address of the user
tty - The tty of the user, if NULL will attempt to figure out
uid - The auid of the person related to the avc message
.if
diff -Naur audit-1.2.6/docs/audit_log_user_comm_message.3 audit-new/docs/audit_log_user_comm_message.3
--- audit-1.2.6/docs/audit_log_user_comm_message.3 2006-04-06 17:21:14.000000000 -0400
+++ audit-new/docs/audit_log_user_comm_message.3 2006-09-08 17:11:49.000000000 -0400
@@ -21,7 +21,7 @@
message - the message text being sent
comm - the program command line name
hostname - the hostname if known, NULL if unknown
-addr - The IP address of the user, NULL if unknown
+addr - The network address of the user, NULL if unknown
tty - The tty of the user, if NULL will attempt to figure out
result - 1 is "success" and 0 is "failed"
.if
diff -Naur audit-1.2.6/docs/audit_log_user_message.3 audit-new/docs/audit_log_user_message.3
--- audit-1.2.6/docs/audit_log_user_message.3 2006-04-06 17:21:14.000000000 -0400
+++ audit-new/docs/audit_log_user_message.3 2006-09-08 17:10:15.000000000 -0400
@@ -18,7 +18,7 @@
type - type of message, ex: AUDIT_USYS_CONFIG, AUDIT_USER_LOGIN
message - the message text being sent
hostname - the hostname if known, NULL if unknown
-addr - The IP address of the user, NULL if unknown
+addr - The network address of the user, NULL if unknown
tty - The tty of the user, if NULL will attempt to figure out
result - 1 is "success" and 0 is "failed"
.if
diff -Naur audit-1.2.6/docs/audit_log_user_semange_message.3 audit-new/docs/audit_log_user_semange_message.3
--- audit-1.2.6/docs/audit_log_user_semange_message.3 2006-04-06 17:21:14.000000000 -0400
+++ audit-new/docs/audit_log_user_semange_message.3 2006-09-08 17:11:17.000000000 -0400
@@ -30,7 +30,7 @@
old_role - the old role that the login user had
old_range - the old mls range that the login usr had
host - The hostname if known
-addr - The IP address of the user
+addr - The network address of the user
tty - The tty of the user
result - 1 is "success" and 0 is "failed"
.if
diff -Naur audit-1.2.6/docs/ausearch.8 audit-new/docs/ausearch.8
--- audit-1.2.6/docs/ausearch.8 2006-06-30 16:17:39.000000000 -0400
+++ audit-new/docs/ausearch.8 2006-09-08 17:13:12.000000000 -0400
@@ -37,7 +37,7 @@
Help
.TP
\fB\-hn <host name>\fR
-Search for an event with the given host name. The hostname can be either a hostname, fully qualified domain name, or numeric IP address. No attempt is made to resolve numeric addresses to domain names or aliases.
+Search for an event with the given host name. The hostname can be either a hostname, fully qualified domain name, or numeric network address. No attempt is made to resolve numeric addresses to domain names or aliases.
.TP
\fB\-i\fR
Interpret numeric entities into text. For example, uid is converted to account name. The conversion is done using the current resources of the machine where the search is being run. If you have renamed the accounts, or don't have the same accounts on your machine, you could get misleading results.
diff -Naur audit-1.2.6/lib/audit_logging.c audit-new/lib/audit_logging.c
--- audit-1.2.6/lib/audit_logging.c 2006-06-30 09:19:11.000000000 -0400
+++ audit-new/lib/audit_logging.c 2006-09-08 17:07:57.000000000 -0400
@@ -204,7 +204,7 @@
* type - type of message, ex: AUDIT_USER, AUDIT_USYS_CONFIG, AUDIT_USER_LOGIN
* message - the message being sent
* hostname - the hostname if known
- * addr - The IP address of the user
+ * addr - The network address of the user
* tty - The tty of the user
* result - 1 is "success" and 0 is "failed"
*
@@ -260,7 +260,7 @@
* message - the message being sent
* comm - the program command line name
* hostname - the hostname if known
- * addr - The IP address of the user
+ * addr - The network address of the user
* tty - The tty of the user
* result - 1 is "success" and 0 is "failed"
*
@@ -324,7 +324,7 @@
* id - uid or gid that the operation is being performed on. This is used
* only when user is NULL.
* host - The hostname if known
- * addr - The IP address of the user
+ * addr - The network address of the user
* tty - The tty of the user
* result - 1 is "success" and 0 is "failed"
*
@@ -393,7 +393,7 @@
* type - type of message, ex: AUDIT_USER, AUDIT_USYS_CONFIG, AUDIT_USER_LOGIN
* message - the message being sent
* hostname - the hostname if known
- * addr - The IP address of the user
+ * addr - The network address of the user
* tty - The tty of the user
* uid - The auid of the person related to the avc message
*
@@ -456,7 +456,7 @@
* old_role - the old role that the login user had
* old_range - the old mls range that the login usr had
* host - The hostname if known
- * addr - The IP address of the user
+ * addr - The network address of the user
* tty - The tty of the user
* result - 1 is "success" and 0 is "failed"
*
[-- Attachment #3: Type: text/plain, Size: 0 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] Change "IP address" to more general term
2006-09-08 23:50 [PATCH] Change "IP address" to more general term Eamon Walsh
@ 2006-09-17 14:15 ` Steve Grubb
0 siblings, 0 replies; 2+ messages in thread
From: Steve Grubb @ 2006-09-17 14:15 UTC (permalink / raw)
To: linux-audit, ewalsh
On Friday 08 September 2006 19:50, Eamon Walsh wrote:
> The attached patch changes "IP address" to "network address" in the
> libaudit header file comments and documentation.
Applied.
Thanks,
-Steve
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2006-09-17 14:15 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-09-08 23:50 [PATCH] Change "IP address" to more general term Eamon Walsh
2006-09-17 14:15 ` Steve Grubb
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.