Port ssl3_get_next_proto to CBS.

NPNServerTest in runner.go provides test coverage.

Change-Id: I5503ccbc4270e7f9f42ebc30c21e8077a430cf9f
Reviewed-on: https://boringssl-review.googlesource.com/1162
Reviewed-by: Adam Langley <agl@google.com>
diff --git a/ssl/ssl.h b/ssl/ssl.h
index 21cc5d1..fa2fffc 100644
--- a/ssl/ssl.h
+++ b/ssl/ssl.h
@@ -1184,7 +1184,7 @@
 						 unsigned int inlen, void *arg),
 				      void *arg);
 void SSL_get0_next_proto_negotiated(const SSL *s,
-				    const unsigned char **data, unsigned *len);
+				    const uint8_t **data, unsigned *len);
 #endif
 
 int SSL_select_next_proto(unsigned char **out, unsigned char *outlen,
@@ -1471,8 +1471,8 @@
 	 * For a server, this is the client's selected_protocol from
 	 * NextProtocol and is set when handling the NextProtocol message,
 	 * before the Finished message. */
-	unsigned char *next_proto_negotiated;
-	unsigned char next_proto_negotiated_len;
+	uint8_t *next_proto_negotiated;
+	size_t next_proto_negotiated_len;
 #endif
 
 #define session_ctx initial_ctx