Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(290)

Unified Diff: net/third_party/nss/ssl/ssl3prot.h

Issue 415005: Linux: add next-protocol-negotiation to libssl. (Closed)
Patch Set: Addressing wtc's comments. Created 11 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/third_party/nss/ssl/ssl3prot.h
diff --git a/net/third_party/nss/ssl/ssl3prot.h b/net/third_party/nss/ssl/ssl3prot.h
index 139af0ddc3558117da8115404a54a63ac8f8e839..84d73a9c31fc0b9f9394f6cabe0175ed1786772a 100644
--- a/net/third_party/nss/ssl/ssl3prot.h
+++ b/net/third_party/nss/ssl/ssl3prot.h
@@ -157,7 +157,8 @@ typedef enum {
server_hello_done = 14,
certificate_verify = 15,
client_key_exchange = 16,
- finished = 20
+ finished = 20,
+ next_proto = 67
} SSL3HandshakeType;
typedef struct {
@@ -351,10 +352,11 @@ typedef enum {
elliptic_curves_xtn = 10,
ec_point_formats_xtn = 11,
#endif
- session_ticket_xtn = 35
+ session_ticket_xtn = 35,
+ next_proto_neg_xtn = 13172
} ExtensionType;
-#define MAX_EXTENSIONS 4
+#define MAX_EXTENSIONS 5
#define TLS_EX_SESS_TICKET_MAC_LENGTH 32

Powered by Google App Engine
This is Rietveld 408576698