16 lines
317 B
Text
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);
|
|
|