fix(exhook): make spellcheck happy

This commit is contained in:
firest 2022-06-27 09:37:35 +08:00
parent c696f08f63
commit 11c2860ca2
2 changed files with 11 additions and 2 deletions

View File

@ -58,6 +58,13 @@ When gRPC is not available, Exhook tries to request the gRPC service at that int
}
}
socket_options {
desc {
en: "Connection socket options"
zh: "连接套接字设置"
}
}
keepalive {
desc {
en: """Enables/disables periodic transmission on a connected socket when no other data is exchanged.
@ -76,14 +83,14 @@ which means that also small amounts of data are sent immediately"""
recbuf {
desc {
en: "The minimum size of the receive buffer to use for the socket"
en: "The minimum size of receive buffer to use for the socket"
zh: "套接字的最小接收缓冲区大小"
}
}
sndbuf {
desc {
en: "The minimum size of the send buffer to use for the socket"
en: "The minimum size of send buffer to use for the socket"
zh: "套接字的最小发送缓冲区大小"
}
}

View File

@ -106,6 +106,8 @@ desc(server) ->
"gRPC server configuration.";
desc(ssl_conf) ->
"SSL client configuration.";
desc(socket_options) ->
?DESC(socket_options);
desc(_) ->
undefined.