mirror of
https://github.com/zeek/zeek.git
synced 2025-10-05 08:08:19 +00:00
21 lines
446 B
Text
21 lines
446 B
Text
# $Id: events-send.bro,v 1.1.2.1 2005/10/07 01:59:12 sommer Exp $
|
|
|
|
@load tcp
|
|
@load http-request
|
|
@load http-reply
|
|
@load http-header
|
|
@load http-body
|
|
@load http-abstract
|
|
@load listen-clear
|
|
|
|
@load capture-events
|
|
|
|
redef peer_description = "events-send";
|
|
|
|
# Make sure the HTTP connection really gets out.
|
|
# (We still miss one final connection event because we shutdown before
|
|
# it gets propagated but that's ok.)
|
|
redef tcp_close_delay = 0secs;
|
|
|
|
|
|
|