mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
16 lines
348 B
Text
16 lines
348 B
Text
# $Id: listen-ssl.bro 1015 2005-01-31 13:46:50Z kreibich $
|
|
#
|
|
# Listen for other Bros (SSL).
|
|
|
|
@load remote
|
|
|
|
# On which port to listen.
|
|
const listen_port_ssl = Remote::default_port_ssl &redef;
|
|
|
|
# On which IP to bind (0.0.0.0 for any interface)
|
|
const listen_if_ssl = 0.0.0.0 &redef;
|
|
|
|
event bro_init()
|
|
{
|
|
listen(listen_if_ssl, listen_port_ssl, T);
|
|
}
|