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