Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix some typos #792

Merged
merged 3 commits into from Jul 28, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion bfe_tls/conn.go
Expand Up @@ -950,7 +950,7 @@ func (c *Conn) choosePlaintextSize() int {
func (c *Conn) writeRecord(typ recordType, data []byte) (n int, err error) {
// choose appropriate size for record
// Note: Some IE browsers fail to parse fragmented TLS/SSL handshake message,
// we just choose dynamic record size for applicate data message. For more informaction,
// we just choose dynamic record size for application data message. For more information,
// see https://support.microsoft.com/en-us/kb/2541763
plaintextSize := maxPlaintext
if typ == recordTypeApplicationData {
Expand Down