mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-11 20:49:02 +00:00
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8545 d0543943-73ff-0310-b7d9-9358b9ac24b2
29 lines
969 B
C
29 lines
969 B
C
/* This is just a sub-file for abyss.h */
|
|
|
|
#include <sys/socket.h>
|
|
|
|
struct abyss_openssl_chaninfo {
|
|
/* TODO: figure out useful information to put in here.
|
|
Maybe client IP address and port. Maybe authenticated host name.
|
|
Maybe authentication level.
|
|
Maybe a certificate.
|
|
*/
|
|
int dummy;
|
|
};
|
|
|
|
void
|
|
ChanSwitchOpensslCreate(unsigned short const portNumber,
|
|
TChanSwitch ** const chanSwitchPP,
|
|
const char ** const errorP);
|
|
|
|
void
|
|
ChanSwitchOpensslCreateFd(int const fd,
|
|
TChanSwitch ** const chanSwitchPP,
|
|
const char ** const errorP);
|
|
|
|
void
|
|
ChannelOpensslCreateSsl(SSL * const sslP,
|
|
TChannel ** const channelPP,
|
|
struct abyss_openssl_chaninfo ** const channelInfoPP,
|
|
const char ** const errorP);
|