mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-05 10:34:54 +00:00
00654d880e
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8545 d0543943-73ff-0310-b7d9-9358b9ac24b2
28 lines
805 B
C
28 lines
805 B
C
/* This is just a sub-file for abyss.h */
|
|
|
|
#include <winsock.h>
|
|
|
|
struct abyss_win_chaninfo {
|
|
size_t peerAddrLen;
|
|
struct sockaddr peerAddr;
|
|
};
|
|
|
|
|
|
void
|
|
ChanSwitchWinCreate(unsigned short const portNumber,
|
|
TChanSwitch ** const chanSwitchPP,
|
|
const char ** const errorP);
|
|
|
|
void
|
|
ChanSwitchWinCreateWinsock(SOCKET const winsock,
|
|
TChanSwitch ** const chanSwitchPP,
|
|
const char ** const errorP);
|
|
|
|
void
|
|
ChannelWinCreateWinsock(SOCKET const fd,
|
|
TChannel ** const channelPP,
|
|
struct abyss_win_chaninfo ** const channelInfoPP,
|
|
const char ** const errorP);
|
|
|
|
typedef SOCKET TOsSocket;
|