Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
grpc-grpc
/
c8c8bfa4034486f7991222e24c472a4ae08f6643
/
.
/
test
/
build
/
openssl-alpn.c
blob: f7365770f70d79772bd8fb9e471d4f52c6df3497 [
file
] [
log
] [
blame
]
/* This is just a compilation test, to see if we have a version of OpenSSL with
ALPN support installed. */
#include
<stdlib.h>
#include
<openssl/ssl.h>
int
main
()
{
SSL_get0_alpn_selected
(
NULL
,
NULL
,
NULL
);
return
0
;
}