mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
Fixing some doc warnings.
This commit is contained in:
parent
9b6373584c
commit
4de670a10e
2 changed files with 5 additions and 7 deletions
|
@ -78,7 +78,7 @@ export {
|
||||||
## or p is specified.
|
## or p is specified.
|
||||||
proto: transport_proto &log &optional;
|
proto: transport_proto &log &optional;
|
||||||
|
|
||||||
## The :bro:enum:`Notice::Type` of the notice.
|
## The :bro:type:`Notice::Type` of the notice.
|
||||||
note: Type &log;
|
note: Type &log;
|
||||||
## The human readable message for the notice.
|
## The human readable message for the notice.
|
||||||
msg: string &log &optional;
|
msg: string &log &optional;
|
||||||
|
|
|
@ -59,8 +59,8 @@ export {
|
||||||
|
|
||||||
## Mapping between numeric codes and human readable strings for SSL/TLS
|
## Mapping between numeric codes and human readable strings for SSL/TLS
|
||||||
## extensions.
|
## extensions.
|
||||||
## ..note: More information can be found here:
|
# More information can be found here:
|
||||||
## http://www.iana.org/assignments/tls-extensiontype-values/tls-extensiontype-values.xml
|
# http://www.iana.org/assignments/tls-extensiontype-values/tls-extensiontype-values.xml
|
||||||
const extensions: table[count] of string = {
|
const extensions: table[count] of string = {
|
||||||
[0] = "server_name",
|
[0] = "server_name",
|
||||||
[1] = "max_fragment_length",
|
[1] = "max_fragment_length",
|
||||||
|
@ -82,7 +82,7 @@ export {
|
||||||
[65281] = "renegotiation_info"
|
[65281] = "renegotiation_info"
|
||||||
} &default=function(i: count):string { return fmt("unknown-%d", i); };
|
} &default=function(i: count):string { return fmt("unknown-%d", i); };
|
||||||
|
|
||||||
## SSLv2
|
# SSLv2
|
||||||
const SSLv20_CK_RC4_128_WITH_MD5 = 0x010080;
|
const SSLv20_CK_RC4_128_WITH_MD5 = 0x010080;
|
||||||
const SSLv20_CK_RC4_128_EXPORT40_WITH_MD5 = 0x020080;
|
const SSLv20_CK_RC4_128_EXPORT40_WITH_MD5 = 0x020080;
|
||||||
const SSLv20_CK_RC2_128_CBC_WITH_MD5 = 0x030080;
|
const SSLv20_CK_RC2_128_CBC_WITH_MD5 = 0x030080;
|
||||||
|
@ -91,7 +91,7 @@ export {
|
||||||
const SSLv20_CK_DES_64_CBC_WITH_MD5 = 0x060040;
|
const SSLv20_CK_DES_64_CBC_WITH_MD5 = 0x060040;
|
||||||
const SSLv20_CK_DES_192_EDE3_CBC_WITH_MD5 = 0x0700C0;
|
const SSLv20_CK_DES_192_EDE3_CBC_WITH_MD5 = 0x0700C0;
|
||||||
|
|
||||||
## TLS
|
# TLS
|
||||||
const TLS_NULL_WITH_NULL_NULL = 0x0000;
|
const TLS_NULL_WITH_NULL_NULL = 0x0000;
|
||||||
const TLS_RSA_WITH_NULL_MD5 = 0x0001;
|
const TLS_RSA_WITH_NULL_MD5 = 0x0001;
|
||||||
const TLS_RSA_WITH_NULL_SHA = 0x0002;
|
const TLS_RSA_WITH_NULL_SHA = 0x0002;
|
||||||
|
@ -313,7 +313,6 @@ export {
|
||||||
## detecting unknown ciphers and for converting the cipher spec constants
|
## detecting unknown ciphers and for converting the cipher spec constants
|
||||||
## into a human readable format.
|
## into a human readable format.
|
||||||
const cipher_desc: table[count] of string = {
|
const cipher_desc: table[count] of string = {
|
||||||
# --- sslv20 ---
|
|
||||||
[SSLv20_CK_RC4_128_EXPORT40_WITH_MD5] =
|
[SSLv20_CK_RC4_128_EXPORT40_WITH_MD5] =
|
||||||
"SSLv20_CK_RC4_128_EXPORT40_WITH_MD5",
|
"SSLv20_CK_RC4_128_EXPORT40_WITH_MD5",
|
||||||
[SSLv20_CK_RC4_128_WITH_MD5] = "SSLv20_CK_RC4_128_WITH_MD5",
|
[SSLv20_CK_RC4_128_WITH_MD5] = "SSLv20_CK_RC4_128_WITH_MD5",
|
||||||
|
@ -325,7 +324,6 @@ export {
|
||||||
"SSLv20_CK_DES_192_EDE3_CBC_WITH_MD5",
|
"SSLv20_CK_DES_192_EDE3_CBC_WITH_MD5",
|
||||||
[SSLv20_CK_DES_64_CBC_WITH_MD5] = "SSLv20_CK_DES_64_CBC_WITH_MD5",
|
[SSLv20_CK_DES_64_CBC_WITH_MD5] = "SSLv20_CK_DES_64_CBC_WITH_MD5",
|
||||||
|
|
||||||
# --- TLS ---
|
|
||||||
[TLS_NULL_WITH_NULL_NULL] = "TLS_NULL_WITH_NULL_NULL",
|
[TLS_NULL_WITH_NULL_NULL] = "TLS_NULL_WITH_NULL_NULL",
|
||||||
[TLS_RSA_WITH_NULL_MD5] = "TLS_RSA_WITH_NULL_MD5",
|
[TLS_RSA_WITH_NULL_MD5] = "TLS_RSA_WITH_NULL_MD5",
|
||||||
[TLS_RSA_WITH_NULL_SHA] = "TLS_RSA_WITH_NULL_SHA",
|
[TLS_RSA_WITH_NULL_SHA] = "TLS_RSA_WITH_NULL_SHA",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue