mirror of
https://github.com/zeek/zeek.git
synced 2025-10-16 13:38:19 +00:00
Name LDAP::Message
and LDAP::Search
*Info
This commit is contained in:
parent
9b02b93889
commit
c43bc52e18
3 changed files with 14 additions and 16 deletions
|
@ -360,8 +360,8 @@ connection {
|
|||
* ts: time, log=T, optional=F
|
||||
* uid: string, log=T, optional=F
|
||||
}
|
||||
* ldap_messages: table[int] of record LDAP::Message, log=F, optional=T
|
||||
LDAP::Message {
|
||||
* ldap_messages: table[int] of record LDAP::MessageInfo, log=F, optional=T
|
||||
LDAP::MessageInfo {
|
||||
* argument: vector of string, log=T, optional=T
|
||||
* diagnostic_message: vector of string, log=T, optional=T
|
||||
* id: record conn_id, log=T, optional=F
|
||||
|
@ -376,8 +376,8 @@ connection {
|
|||
* version: int, log=T, optional=T
|
||||
}
|
||||
* ldap_proto: string, log=F, optional=T
|
||||
* ldap_searches: table[int] of record LDAP::Search, log=F, optional=T
|
||||
LDAP::Search {
|
||||
* ldap_searches: table[int] of record LDAP::SearchInfo, log=F, optional=T
|
||||
LDAP::SearchInfo {
|
||||
* attributes: vector of string, log=T, optional=T
|
||||
* base_object: vector of string, log=T, optional=T
|
||||
* deref: set[string], log=T, optional=T
|
||||
|
|
|
@ -10,12 +10,12 @@
|
|||
#
|
||||
# @TEST-DOC: Test LDAP analyzer with small trace using logging policies.
|
||||
|
||||
hook LDAP::log_policy(rec: LDAP::Message, id: Log::ID, filter: Log::Filter)
|
||||
hook LDAP::log_policy(rec: LDAP::MessageInfo, id: Log::ID, filter: Log::Filter)
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
||||
hook LDAP::log_policy_search(rec: LDAP::Search, id: Log::ID,
|
||||
hook LDAP::log_policy_search(rec: LDAP::SearchInfo, id: Log::ID,
|
||||
filter: Log::Filter)
|
||||
{
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue