diff options
author | Martin Thomson <martin.thomson@gmail.com> | 2019-02-17 13:07:04 -0800 |
---|---|---|
committer | Martin Thomson <martin.thomson@gmail.com> | 2019-02-17 13:07:04 -0800 |
commit | cc253da3e8d632ea0f8268516788de77b7a60d9b (patch) | |
tree | f42fef6ffd550c4f9945a873d80346778dd83a89 /lib/ssl/ssldef.c | |
parent | 9ea3d8f3aa6a1f9b0c76dd1304146b0a0dafdc26 (diff) | |
download | nss-hg-cc253da3e8d632ea0f8268516788de77b7a60d9b.tar.gz |
Bug 1471126 - Record layer separation, r=ekr
Summary:
Add functions for QUIC that provide the raw content of records to callback functions.
Reviewers: ekr
Reviewed By: ekr
Bug #: 1471126
Differential Revision: https://phabricator.services.mozilla.com/D1874
Diffstat (limited to 'lib/ssl/ssldef.c')
-rw-r--r-- | lib/ssl/ssldef.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssl/ssldef.c b/lib/ssl/ssldef.c index be5bcb269..3ed197950 100644 --- a/lib/ssl/ssldef.c +++ b/lib/ssl/ssldef.c @@ -84,7 +84,7 @@ ssl_DefRecv(sslSocket *ss, unsigned char *buf, int len, int flags) * For blocking sockets, always returns len or SECFailure, no short writes. * For non-blocking sockets: * Returns positive count if any data was written, else returns SECFailure. - * Short writes may occur. Does not return SECWouldBlock. + * Short writes may occur. */ int ssl_DefSend(sslSocket *ss, const unsigned char *buf, int len, int flags) |