Chromium Code Reviews| Index: net/socket/ssl_socket.h |
| diff --git a/net/socket/ssl_socket.h b/net/socket/ssl_socket.h |
| index bd063a425af7d10bdd77fb3bdf9c959f63e5980e..ff1fcc48a8d8514e51e7b588e073b256865ca093 100644 |
| --- a/net/socket/ssl_socket.h |
| +++ b/net/socket/ssl_socket.h |
| @@ -27,6 +27,13 @@ public: |
| const base::StringPiece& context, |
| unsigned char* out, |
| unsigned int outlen) = 0; |
| + |
| + // Returns the tls-unique channel bindings (see RFC 5929). |
| + // At most, |outlen_max| bytes will be written to |out|. The |
| + // actual number of bytes written will be set in |outlen|. |
|
wtc
2012/07/30 20:05:08
Nit: remove the comma after "At most". Add '*' be
Ryan Hamilton
2012/07/30 21:37:58
Done.
|
| + virtual int GetTlsUniqueChannelBinding(unsigned char* out, |
|
wtc
2012/07/30 20:05:08
Please spell "TLS" in all caps.
History: our Styl
Ryan Hamilton
2012/07/30 21:37:58
Done.
|
| + unsigned int *outlen, |
| + unsigned int outlen_max) = 0; |
|
wtc
2012/07/30 20:05:08
We probably should just use a
std::string* out
o
Ryan Hamilton
2012/07/30 21:37:58
Done.
|
| }; |
| } // namespace net |