]> git.proxmox.com Git - mirror_edk2.git/blob - AppPkg/Applications/Sockets/RawIp4Tx/Main.c
BaseTools/BinToPcd: Fix Python 2.7.x compatibility issue
[mirror_edk2.git] / AppPkg / Applications / Sockets / RawIp4Tx / Main.c
1 /** @file
2 Raw IP4 transmit test application
3
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
9
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.
12
13 **/
14
15 #include "RawIp4Tx.h"
16
17
18 /**
19 Transmit raw IP4 packets to the remote system.
20
21 @param [in] Argc The number of arguments
22 @param [in] Argv The argument value array
23
24 @retval 0 The application exited normally.
25 @retval Other An error occurred.
26 **/
27 int
28 main (
29 IN int Argc,
30 IN char **Argv
31 )
32 {
33 int RetVal;
34
35 //
36 // Run the application
37 //
38 RetVal = RawIp4Tx ( Argc, Argv );
39
40 //
41 // Return the operation status
42 //
43 return RetVal;
44 }