]> git.proxmox.com Git - mirror_edk2.git/blame - AppPkg/Applications/Sockets/OobRx/OobRx.h
Update the sockets applications
[mirror_edk2.git] / AppPkg / Applications / Sockets / OobRx / OobRx.h
CommitLineData
59bc0593 1/** @file\r
2 Definitions for the OOB Receive application\r
3\r
4 Copyright (c) 2011, Intel Corporation\r
5 All rights reserved. This program and the accompanying materials\r
6 are licensed and made available under the terms and conditions of the BSD License\r
7 which accompanies this distribution. The full text of the license may be found at\r
8 http://opensource.org/licenses/bsd-license.php\r
9\r
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12\r
13**/\r
14\r
15#ifndef _OOB_RX_H_\r
16#define _OOB_RX_H_\r
17\r
18//------------------------------------------------------------------------------\r
19// Include Files\r
20//------------------------------------------------------------------------------\r
21\r
22#ifdef BUILD_FOR_WINDOWS\r
23//\r
24// Build for Windows environment\r
25//\r
26\r
27#include <winsock2.h>\r
28\r
29#define CLOSE_SOCKET closesocket\r
30#define SIN_ADDR(port) port.sin_addr.S_un.S_addr\r
31#define SIN_FAMILY(port) port.sin_family\r
32#define SIN_LEN(port) port.sin_family\r
33#define SIN_PORT(port) port.sin_port\r
34#define GET_ERRNO WSAGetLastError ( )\r
35\r
36#define RX_TIMEOUT_ERROR WSAETIMEDOUT\r
37#define ssize_t int\r
38#define socklen_t int\r
39\r
40#else // BUILD_FOR_WINDOWS\r
41//\r
42// Build for EFI environment\r
43//\r
44\r
45#include <Uefi.h>\r
46#include <errno.h>\r
47#include <stdlib.h>\r
48\r
49#include <netinet/in.h>\r
50\r
51#include <sys/EfiSysCall.h>\r
52#include <sys/endian.h>\r
53#include <sys/socket.h>\r
54#include <sys/time.h>\r
55\r
56#define CLOSE_SOCKET close\r
57#define SIN_ADDR(port) port.sin_addr.s_addr\r
58#define SIN_FAMILY(port) port.sin_family\r
59#define SIN_LEN(port) port.sin_len\r
60#define SIN_PORT(port) port.sin_port\r
61#define SOCKET int\r
62#define GET_ERRNO errno\r
63#define RX_TIMEOUT_ERROR ETIMEDOUT\r
64\r
65#endif // BUILD_FOR_WINDOWS\r
66\r
67#include <stdio.h>\r
68\r
69//------------------------------------------------------------------------------\r
70// Constants\r
71//------------------------------------------------------------------------------\r
72\r
73#define OOB_RX_PORT 12344\r
74\r
75//------------------------------------------------------------------------------\r
76// API\r
77//------------------------------------------------------------------------------\r
78\r
79/**\r
80 Run the OOB receive application\r
81\r
82 @param [in] ArgC Argument count\r
83 @param [in] ArgV Argument value array\r
84\r
85 @retval 0 Successfully operation\r
86 **/\r
87\r
88int\r
89OobRx (\r
90 IN int ArgC,\r
91 IN char **ArgV\r
92 );\r
93\r
94//------------------------------------------------------------------------------\r
95\r
96#endif // _OOB_RX_H_\r