diff options
author | Guo Mang <mang.guo@intel.com> | 2017-08-02 09:54:47 +0800 |
---|---|---|
committer | Guo Mang <mang.guo@intel.com> | 2017-09-05 19:45:08 +0800 |
commit | 6c128c65b5ec0e5b8b5a0ccb165f3afd29e485f8 (patch) | |
tree | 444372d92a0ae8991fe4d15eb3937df43690dfda /AppPkg/Applications/Sockets/SetHostName/SetHostName.c | |
parent | b207c6434d7a5a4502975d322312e07017e8a8cb (diff) | |
download | edk2-platforms-6c128c65b5ec0e5b8b5a0ccb165f3afd29e485f8.tar.xz |
Remove core packages since we can get them from edk2 repository
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Guo Mang <mang.guo@intel.com>
Diffstat (limited to 'AppPkg/Applications/Sockets/SetHostName/SetHostName.c')
-rw-r--r-- | AppPkg/Applications/Sockets/SetHostName/SetHostName.c | 100 |
1 files changed, 0 insertions, 100 deletions
diff --git a/AppPkg/Applications/Sockets/SetHostName/SetHostName.c b/AppPkg/Applications/Sockets/SetHostName/SetHostName.c deleted file mode 100644 index 2c8001e205..0000000000 --- a/AppPkg/Applications/Sockets/SetHostName/SetHostName.c +++ /dev/null @@ -1,100 +0,0 @@ -/** @file
- Set the host name
-
- Copyright (c) 2011-2012, Intel Corporation
- All rights reserved. This program and the accompanying materials
- are licensed and made available under the terms and conditions of the BSD License
- which accompanies this distribution. The full text of the license may be found at
- http://opensource.org/licenses/bsd-license.php
-
- THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
- WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
-
-**/
-
-#include <errno.h>
-#include <string.h>
-#include <Uefi.h>
-#include <unistd.h>
-
-#include <Library/DebugLib.h>
-#include <Library/UefiLib.h>
-
-#include <sys/socket.h>
-
-char mBuffer[65536];
-
-
-/**
- Set the host name
-
- @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 (
- IN int Argc,
- IN char **Argv
- )
-{
- int AppStatus;
-
- DEBUG (( DEBUG_INFO,
- "%a starting\r\n",
- Argv[0]));
-
- //
- // Determine if the host name is specified
- //
- AppStatus = 0;
- if ( 1 < Argc ) {
- //
- // Set the host name
- //
- AppStatus = sethostname ( Argv[1], strlen ( Argv[1]));
- if ( -1 == AppStatus ) {
- switch ( errno ) {
- default:
- Print ( L"ERROR - errno: %d\r\n", errno );
- break;
-
- case ENODEV:
- Print ( L"WARNING - Plarform does not support permanent storage!\r\n" );
- break;
-
- case ENOMEM:
- Print ( L"ERROR - Insufficient storage to save host name!\r\n" );
- break;
-
- case ENOTSUP:
- Print ( L"ERROR - Platform does not support environment variable storage!\r\n" );
- break;
- }
- }
- }
- else {
- //
- // Display the current host name
- //
- AppStatus = gethostname ( &mBuffer[0], sizeof ( mBuffer ));
- if ( -1 == AppStatus ) {
- Print ( L"ERROR - Unable to get host name, errno: %d\r\n", errno );
- }
- else {
- if ( 0 == mBuffer[0]) {
- Print ( L"Host name is not set!\r\n" );
- }
- else {
- Print ( L"Host name: %a", &mBuffer[0]);
- }
- }
- }
-
- //
- // All done
- //
- return errno;
-}
|