| /******************************************************************************* |
| * Copyright (c) 2010 - 2014 ACIN, fortiss GmbH |
| * All rights reserved. This program and the accompanying materials |
| * are made available under the terms of the Eclipse Public License v1.0 |
| * which accompanies this distribution, and is available at |
| * http://www.eclipse.org/legal/epl-v10.html |
| * |
| * Contributors: |
| * Alois Zoitl, Ingo Hegny - initial API and implementation and/or initial documentation |
| *******************************************************************************/ |
| #ifndef BSDSOCKETINTERF_H_ |
| #define BSDSOCKETINTERF_H_ |
| |
| |
| class CWin32SocketInterface { |
| public: |
| typedef SOCKET TSocketDescriptor; |
| typedef struct sockaddr_in TUDPDestAddr; |
| |
| static void closeSocket(TSocketDescriptor pa_nSockD); |
| static TSocketDescriptor openTCPServerConnection(char *pa_acIPAddr, unsigned short pa_nPort); |
| static TSocketDescriptor openTCPClientConnection(char *pa_acIPAddr, unsigned short pa_nPort); |
| static TSocketDescriptor acceptTCPConnection(TSocketDescriptor pa_nListeningSockD); |
| static int sendDataOnTCP(TSocketDescriptor pa_nSockD, char* pa_pcData, unsigned int pa_unSize); |
| static int receiveDataFromTCP(TSocketDescriptor pa_nSockD, char* pa_pcData, unsigned int pa_unBufSize); |
| |
| static TSocketDescriptor openUDPSendPort(char *pa_acIPAddr, unsigned short pa_nPort, TUDPDestAddr *m_ptDestAddr); |
| static TSocketDescriptor openUDPReceivePort(char *pa_acIPAddr, unsigned short pa_nPort); |
| static int sendDataOnUDP(TSocketDescriptor pa_nSockD, TUDPDestAddr *pa_ptDestAddr, char* pa_pcData, unsigned int pa_unSize); |
| static int receiveDataFromUDP(TSocketDescriptor pa_nSockD, char* pa_pcData, unsigned int pa_unBufSize); |
| |
| private: |
| CWin32SocketInterface(); //this function is not implemented as we don't want instances of this class |
| |
| static LPSTR getErrorMessage(int pa_nErrorNumber); |
| }; |
| |
| #endif /* BSDSOCKETINTERF_H_ */ |