defensive-coding-guide/modules/ROOT/examples/Features-TLS-NSS-Includes.adoc
2022-01-13 20:42:40 +01: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);