]> git.proxmox.com Git - mirror_edk2.git/blob - AppPkg/Applications/Sockets/OobRx/Main.c
AppPkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / AppPkg / Applications / Sockets / OobRx / Main.c
1 /** @file
2 Out-of-band 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 <OobRx.h>
10
11
12 /**
13 Receive out-of-band messages from the 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 = OobRx ( Argc, Argv );
33
34 //
35 // Return the operation status
36 //
37 return RetVal;
38 }