]> git.proxmox.com Git - mirror_edk2.git/blob - AppPkg/Applications/Sockets/RawIp4Rx/Main.c
EmbeddedPkg: Extend NvVarStoreFormattedLib LIBRARY_CLASS
[mirror_edk2.git] / AppPkg / Applications / Sockets / RawIp4Rx / Main.c
1 /** @file
2 Raw IP4 receive test application
3
4 Copyright (c) 2011-2012, Intel Corporation. All rights reserved.
5 SPDX-License-Identifier: BSD-2-Clause-Patent
6
7 **/
8
9 #include "RawIp4Rx.h"
10
11
12 /**
13 Receive raw datagrams from a remote system.
14
15 @param [in] Argc The number of arguments
16 @param [in] Argv The argument value array
17
18 @retval 0 The application exited normally.
19 @retval Other An error occurred.
20 **/
21 int
22 main (
23 IN int Argc,
24 IN char **Argv
25 )
26 {
27 int RetVal;
28
29 //
30 // Run the application
31 //
32 RetVal = RawIp4Rx ( Argc, Argv );
33
34 //
35 // Return the operation status
36 //
37 return RetVal;
38 }