mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 23:58:20 +00:00
ldap: Rename LDAP::search_result to LDAP::search_result_entry
To avoid confusion potential confusion between SearchResultEntry and SearchResultDone.
This commit is contained in:
parent
df37cadbe8
commit
46d0287b49
3 changed files with 7 additions and 7 deletions
|
@ -296,9 +296,9 @@ event LDAP::search_request(c: connection,
|
||||||
}
|
}
|
||||||
|
|
||||||
#############################################################################
|
#############################################################################
|
||||||
event LDAP::search_result(c: connection,
|
event LDAP::search_result_entry(c: connection,
|
||||||
message_id: int,
|
message_id: int,
|
||||||
object_name: string) {
|
object_name: string) {
|
||||||
|
|
||||||
set_session(c, message_id, LDAP::ProtocolOpcode_SEARCH_RESULT_ENTRY);
|
set_session(c, message_id, LDAP::ProtocolOpcode_SEARCH_RESULT_ENTRY);
|
||||||
|
|
||||||
|
|
|
@ -93,7 +93,7 @@ global LDAP::search_request: event (
|
||||||
## message_id: The messageID element.
|
## message_id: The messageID element.
|
||||||
##
|
##
|
||||||
## object_name: The object name in the SearchResultEntry.
|
## object_name: The object name in the SearchResultEntry.
|
||||||
global LDAP::search_result: event (
|
global LDAP::search_result_entry: event (
|
||||||
c: connection,
|
c: connection,
|
||||||
message_id: int,
|
message_id: int,
|
||||||
object_name: string
|
object_name: string
|
||||||
|
|
|
@ -38,6 +38,6 @@ on LDAP::SearchRequest -> event LDAP::search_request($conn,
|
||||||
self.filter,
|
self.filter,
|
||||||
self.attributes);
|
self.attributes);
|
||||||
|
|
||||||
on LDAP::SearchResultEntry -> event LDAP::search_result($conn,
|
on LDAP::SearchResultEntry -> event LDAP::search_result_entry($conn,
|
||||||
message.messageID,
|
message.messageID,
|
||||||
self.objectName);
|
self.objectName);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue