2 Definitions for the raw IP4 transmit application
4 Copyright (c) 2011-2012, Intel Corporation
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
15 #ifndef _RAW_IP4_TX_H_
16 #define _RAW_IP4_TX_H_
18 //------------------------------------------------------------------------------
20 //------------------------------------------------------------------------------
22 #ifdef BUILD_FOR_WINDOWS
24 // Build for Windows environment
30 #define CLOSE_SOCKET closesocket
31 #define EINVAL 22 // Invalid argument
32 #define GET_ERRNO WSAGetLastError ( )
33 #define SIN_ADDR(port) port.sin_addr.S_un.S_addr
34 #define SIN_FAMILY(port) port.sin_family
35 #define SIN_LEN(port) port.sin_family
36 #define SIN_PORT(port) port.sin_port
40 #else // BUILD_FOR_WINDOWS
42 // Build for EFI environment
50 #include <netinet/in.h>
52 #include <sys/EfiSysCall.h>
53 #include <sys/endian.h>
54 #include <sys/socket.h>
56 #define CLOSE_SOCKET close
57 #define GET_ERRNO errno
58 #define SIN_ADDR(port) port.sin_addr.s_addr
59 #define SIN_FAMILY(port) port.sin_family
60 #define SIN_LEN(port) port.sin_len
61 #define SIN_PORT(port) port.sin_port
64 #endif // BUILD_FOR_WINDOWS
68 //------------------------------------------------------------------------------
70 //------------------------------------------------------------------------------
73 // See http://www.iana.org/assignments/protocol-numbers/protocol-numbers.xml
74 // and http://tools.ietf.org/html/rfc3692
76 #define RAW_PROTOCOL 253
78 //------------------------------------------------------------------------------
80 //------------------------------------------------------------------------------
83 Transmit raw IP4 packets to the remote system.
85 @param [in] ArgC Argument count
86 @param [in] ArgV Argument value array
88 @retval 0 Successfully operation
97 //------------------------------------------------------------------------------
99 #endif // _RAW_IP4_TX_H_