X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=AppPkg%2FApplications%2FSockets%2FRawIp4Rx%2FWindows%2Fmain.c;fp=AppPkg%2FApplications%2FSockets%2FRawIp4Rx%2FWindows%2Fmain.c;h=0000000000000000000000000000000000000000;hp=0e89f6f1aca6b11743d5f7925ebbffe1104f2a9a;hb=964f432b9b0afe103c41c7613fade3e699118afe;hpb=e2d3a25f1a3135221a9c8061e1b8f90245d727eb diff --git a/AppPkg/Applications/Sockets/RawIp4Rx/Windows/main.c b/AppPkg/Applications/Sockets/RawIp4Rx/Windows/main.c deleted file mode 100644 index 0e89f6f1ac..0000000000 --- a/AppPkg/Applications/Sockets/RawIp4Rx/Windows/main.c +++ /dev/null @@ -1,55 +0,0 @@ -/** @file - Windows version of the raw IP4 receive application - - Copyright (c) 2011-2012, Intel Corporation. All rights reserved. - SPDX-License-Identifier: BSD-2-Clause-Patent - -**/ - -#include - - -/** - Receive raw IP4 packets from a remote system. - - Please note that this program must be run with administrator privileges! - - @param [in] argc The number of arguments - @param [in] argv The argument value array - - @retval 0 The application exited normally. - @retval Other An error occurred. -**/ -int -main( - int argc, - char ** argv - ) -{ - int RetVal; - WSADATA WsaData; - - // - // Initialize the WinSock layer - // - RetVal = WSAStartup ( MAKEWORD ( 2, 2 ), &WsaData ); - if ( 0 == RetVal ) { - // - // Start the application - // - RetVal = RawIp4Rx ( argc, argv ); - if ( WSAEACCES == RetVal ) { - printf ( "Requires administrator privileges to run!\r\n" ); - } - - // - // Done with the WinSock layer - // - WSACleanup ( ); - } - - // - // Return the final result - // - return RetVal; -}