blob: f7365770f70d79772bd8fb9e471d4f52c6df3497 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* 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;
}
|