Merge branch 'topic/policy-scripts-new' of ssh://git.bro-ids.org/bro into topic/policy-scripts-new

This commit is contained in:
Seth Hall 2011-05-26 00:28:37 -04:00
commit e07189e129
2 changed files with 8 additions and 6 deletions

View file

@ -132,6 +132,8 @@ endmacro(REST_TARGET)
rest_target(${CMAKE_CURRENT_SOURCE_DIR} example.bro internal)
rest_target(${POLICY_SRC_DIR} conn.bro user)
rest_target(${POLICY_SRC_DIR} conn/base.bro user)
rest_target(${POLICY_SRC_DIR} conn/contents.bro user)
rest_target(${POLICY_SRC_DIR} dns.bro policy/dns-index)
rest_target(${POLICY_SRC_DIR} dns/auth-addl.bro policy/dns-index)

View file

@ -1,15 +1,15 @@
##! This script can be used to extract either the originator's data or the
##! responders data or both. By default nothing is extracted, and in order
##! to actually extract data the :bro:id:`c$extract_orig` and/or the
##! :bro:id:`c$extract_resp` variable must be set to T. One way to achieve
##! to actually extract data the ``c$extract_orig`` and/or the
##! ``c$extract_resp`` variable must be set to T. One way to achieve
##! would be to handle the connection_established event elsewhere and set the
##! extract_orig and extract_resp options there.
##! This script does not work well in a cluster context unless it has a remotely
##! mounted disk to write the content files to.
##! Note: This script has a problem is another connection happens using the
##! same IP addresses and ports. There is nothing in place to test for
##! the existence of a file.
##!
##! .. note:: This script has a problem if another connection happens using the
##! same IP addresses and ports. There is nothing in place to test for
##! the existence of a file.
module Conn;