defensive-coding-guide/modules/ROOT/pages/_partials/snippets/Features-TLS-NSS-Includes.adoc
2018-09-20 11:51:33 +02:00

16 lines
317 B
Text

// NSPR include files
#include <prerror.h>
#include <prinit.h>
// NSS include files
#include <nss.h>
#include <pk11pub.h>
#include <secmod.h>
#include <ssl.h>
#include <sslproto.h>
// Private API, no other way to turn a POSIX file descriptor into an
// NSPR handle.
NSPR_API(PRFileDesc*) PR_ImportTCPSocket(int);