1 /** @file 2 Raw IP4 receive 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 "RawIp4Rx.h" 16 17 18 /** 19 Receive raw datagrams from a 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 = RawIp4Rx ( Argc, Argv ); 39 40 // 41 // Return the operation status 42 // 43 return RetVal; 44 } 45