📄 support.c
字号:
// Module: Support.c
//
// Description:
// This file contains support routines necessary for the
// Mcastatm.c sample. These funtion return the number of
// ATM interfaces as well as their corresponding ATM
// addresses.
//
// Compile:
// cl /c Support.c
//
// Command Line Arguments/Parameters
// None
//
#include "Support.h"
#include <stdio.h>
#include <stdlib.h>
UCHAR BtoH( CHAR ch );
//
// Function: GetNumATMInterfaces
//
// Description:
// This function returns the number of ATM interfaces on
// the local machine.
//
int GetNumATMInterfaces(SOCKET s)
{
DWORD dwNum,
nbytes=sizeof(DWORD);
if (WSAIoctl(s, SIO_GET_NUMBER_OF_ATM_DEVICES, NULL, 0,
(LPVOID)&dwNum, sizeof(DWORD), &nbytes, NULL, NULL) == SOCKET_ERROR)
{
return -1;
}
return dwNum;
}
//
// Function: GetATMAddress
//
// Description:
// This function returns the ATM address for a given interface.
// Use the previous function to return how many interfaces there
// are and then call this function with the device parameter
// from 0 to the number of interfaces - 1.
//
BOOL GetATMAddress(SOCKET s,int device, ATM_ADDRESS *atmaddr)
{
DWORD bytes;
if (WSAIoctl(s, SIO_GET_ATM_ADDRESS, (LPVOID)&device, sizeof(DWORD),
(LPVOID)atmaddr, sizeof(ATM_ADDRESS), &bytes, NULL,
NULL) == SOCKET_ERROR)
{
return FALSE;
}
return TRUE;
}
//
// Function: FindProtocol
//
// Description:
// This function enumerates all installed protocol providers
// and returns the first ATM provider.
//
BOOL FindProtocol(WSAPROTOCOL_INFO *lpProto)
{
WSAPROTOCOL_INFO *lpProtocolBuf=NULL;
DWORD dwErr,
dwRet,
dwBufLen=0,
i;
if (WSAEnumProtocols(NULL, lpProtocolBuf,
&dwBufLen) != SOCKET_ERROR)
{
// This should never happen as there is a NULL buffer
//
printf("WSAEnumProtocols failed!\n");
return FALSE;
}
else if ((dwErr = WSAGetLastError()) != WSAENOBUFS)
{
// We failed for some reason not relating to buffer size -
// also odd
//
printf("WSAEnumProtocols failed: %d\n", dwErr);
return FALSE;
}
// Allocate the correct buffer size for WSAEnumProtocols as
// well as the buffer to return
//
lpProtocolBuf = (WSAPROTOCOL_INFO *)GlobalAlloc(GMEM_FIXED,
dwBufLen);
if (lpProtocolBuf == NULL)
{
printf("GlobalAlloc failed: %d\n", GetLastError());
return FALSE;
}
dwRet = WSAEnumProtocols(NULL, lpProtocolBuf, &dwBufLen);
if (dwRet == SOCKET_ERROR)
{
printf("WSAEnumProtocols failed: %d\n", WSAGetLastError());
GlobalFree(lpProtocolBuf);
return FALSE;
}
// Loop through the returned protocol information looking for those
// that are in the AF_NETBIOS address family.
//
for (i=0; i < dwRet ;i++)
{
if ( (lpProtocolBuf[i].iAddressFamily == AF_ATM) &&
(lpProtocolBuf[i].iSocketType == SOCK_RAW) &&
(lpProtocolBuf[i].iProtocol == ATMPROTO_AAL5) )
{
memcpy(lpProto, &lpProtocolBuf[i], sizeof(WSAPROTOCOL_INFO));
GlobalFree(lpProtocolBuf);
return TRUE;
}
}
GlobalFree(lpProtocolBuf);
return FALSE;
}
//
// Function: AtoH
//
// Description:
// This function coverts the ATM address specified in the
// string(ascii) format to the binary(hexadecimal) format.
//
void AtoH( CHAR *szDest, CHAR *szSource, INT iCount )
{
while (iCount--)
{
*szDest++ = ( BtoH ( *szSource++ ) << 4 ) + BtoH ( *szSource++ );
}
return;
}
//
// Function: BtoH
//
// Description:
// This function returns the equivalent binary value for
// an individual character specified in the ascii format.
//
UCHAR BtoH( CHAR ch )
{
if ( ch >= '0' && ch <= '9' )
{
return ( ch - '0' );
}
if ( ch >= 'A' && ch <= 'F' )
{
return ( ch - 'A' + 0xA );
}
if (ch >= 'a' && ch <= 'f' )
{
return ( ch - 'a' + 0xA );
}
//
// Illegal values in the address will not be excepted
//
return -1;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -