Changeset 58459 in vbox for trunk/src/VBox/Devices/EFI/Firmware/NetworkPkg/Application
- Timestamp:
- Oct 28, 2015 8:17:18 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 103761
- Location:
- trunk/src/VBox/Devices/EFI/Firmware
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/Firmware
-
Property svn:mergeinfo
set to (toggle deleted branches)
/vendor/edk2/current 103735-103757
-
Property svn:mergeinfo
set to (toggle deleted branches)
-
trunk/src/VBox/Devices/EFI/Firmware/NetworkPkg/Application/IfConfig6/IfConfig6.c
r48674 r58459 2 2 The implementation for Shell application IfConfig6. 3 3 4 Copyright (c) 2009 - 201 1, Intel Corporation. All rights reserved.<BR>4 Copyright (c) 2009 - 2014, Intel Corporation. All rights reserved.<BR> 5 5 6 6 This program and the accompanying materials … … 137 137 Str = (CHAR16 *) AllocateZeroPool (StrSize (String)); 138 138 ASSERT (Str != NULL); 139 Str = Str Cpy (Str, String);139 Str = StrnCpy (Str, String, StrLen (String)); 140 140 ArgStr = Str; 141 141 … … 366 366 UINT8 AddrCnt; 367 367 368 Prefix = 0; 368 369 AddrCnt = 0; 369 370 *BufSize = 0; … … 1720 1721 ASSERT (Str != NULL); 1721 1722 1722 Str = Str Cpy (Str, ValueStr);1723 Str = StrnCpy (Str, ValueStr, StrLen (ValueStr)); 1723 1724 Private->IfName = Str; 1724 1725 } … … 1734 1735 ASSERT (Str != NULL); 1735 1736 1736 Str = Str Cpy (Str, ValueStr);1737 Str = StrnCpy (Str, ValueStr, StrLen (ValueStr)); 1737 1738 Private->IfName = Str; 1738 1739 } -
trunk/src/VBox/Devices/EFI/Firmware/NetworkPkg/Application/IfConfig6/IfConfig6.inf
r48674 r58459 1 1 ## @file 2 # Component description file forShell application IfConfig6.2 # Shell application IfConfig6. 3 3 # 4 # Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.<BR> 4 # It is shell application which is used to set and get configurations for the 5 # EFI IPv6 network stack. 6 # 7 # Copyright (c) 2009 - 2014, Intel Corporation. All rights reserved.<BR> 5 8 # 6 9 # This program and the accompanying materials … … 21 24 VERSION_STRING = 1.0 22 25 ENTRY_POINT = IfConfig6Initialize 26 MODULE_UNI_FILE = IfConfig6.uni 23 27 24 28 # … … 49 53 50 54 [Protocols] 51 gEfiIp6ServiceBindingProtocolGuid ## CONSUMS 52 gEfiIp6ConfigProtocolGuid ## CONSUMS 55 gEfiIp6ServiceBindingProtocolGuid ## CONSUMES 56 gEfiIp6ConfigProtocolGuid ## CONSUMES 57 58 [UserExtensions.TianoCore."ExtraFiles"] 59 IfConfig6Extra.uni -
trunk/src/VBox/Devices/EFI/Firmware/NetworkPkg/Application/IpsecConfig/Indexer.c
r48674 r58459 2 2 The implementation of construct ENTRY_INDEXER in IpSecConfig application. 3 3 4 Copyright (c) 2009 - 201 0, Intel Corporation. All rights reserved.<BR>4 Copyright (c) 2009 - 2014, Intel Corporation. All rights reserved.<BR> 5 5 6 6 This program and the accompanying materials … … 235 235 236 236 Indexer->PadId.PeerIdValid = TRUE; 237 ZeroMem (Indexer->PadId.Id.PeerId, MAX_PEERID_LEN); 237 238 StrnCpy ((CHAR16 *) Indexer->PadId.Id.PeerId, ValueStr, ARRAY_SIZE (Indexer->PadId.Id.PeerId) - 1); 238 239 } -
trunk/src/VBox/Devices/EFI/Firmware/NetworkPkg/Application/IpsecConfig/IpSecConfig.inf
r48674 r58459 1 1 ## @file 2 # Component description file for IpSecConfig6 application. 2 # Shell application IpSecConfig. 3 # 4 # This application is used to set and retrieve security and policy related information 5 # for the EFI IPsec protocol driver. 3 6 # 4 # Copyright (c) 2009 - 201 0, Intel Corporation. All rights reserved.<BR>7 # Copyright (c) 2009 - 2014, Intel Corporation. All rights reserved.<BR> 5 8 # 6 9 # This program and the accompanying materials … … 21 24 VERSION_STRING = 1.0 22 25 ENTRY_POINT = InitializeIpSecConfig 26 MODULE_UNI_FILE = IpSecConfig.uni 23 27 24 28 [Sources] … … 58 62 59 63 [Protocols] 60 gEfiIpSec2ProtocolGuid ##CONSUMS 61 gEfiIpSecConfigProtocolGuid ##CONSUMS 64 gEfiIpSec2ProtocolGuid ##CONSUMES 65 gEfiIpSecConfigProtocolGuid ##CONSUMES 66 67 [UserExtensions.TianoCore."ExtraFiles"] 68 IpSecConfigExtra.uni -
trunk/src/VBox/Devices/EFI/Firmware/NetworkPkg/Application/Ping6/Ping6.c
r48674 r58459 2 2 The implementation for Ping6 application. 3 3 4 Copyright (c) 2009 - 201 1, Intel Corporation. All rights reserved.<BR>4 Copyright (c) 2009 - 2012, Intel Corporation. All rights reserved.<BR> 5 5 6 6 This program and the accompanying materials … … 803 803 804 804 /** 805 Dest ory the IP6 instance.805 Destroy the IP6 instance. 806 806 807 807 @param[in] Private The pointer of PING6_PRIVATE_DATA. … … 809 809 **/ 810 810 VOID 811 Ping6Dest oryIp6Instance (811 Ping6DestroyIp6Instance ( 812 812 IN PING6_PRIVATE_DATA *Private 813 813 ) … … 1020 1020 1021 1021 if (Private->Ip6ChildHandle != NULL) { 1022 Ping6Dest oryIp6Instance (Private);1022 Ping6DestroyIp6Instance (Private); 1023 1023 } 1024 1024 -
trunk/src/VBox/Devices/EFI/Firmware/NetworkPkg/Application/Ping6/Ping6.inf
r48674 r58459 1 1 ## @file 2 # Component description file for Ping6 application.2 # Shell application Ping6. 3 3 # 4 # Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.<BR> 4 # It is an shell application which is used to Ping the target host with IPv6 stack. 5 # 6 # Copyright (c) 2009 - 2014, Intel Corporation. All rights reserved.<BR> 5 7 # 6 8 # This program and the accompanying materials … … 21 23 VERSION_STRING = 1.0 22 24 ENTRY_POINT = InitializePing6 25 MODULE_UNI_FILE = Ping6.uni 23 26 24 27 # … … 59 62 60 63 [Protocols] 61 gEfiCpuArchProtocolGuid ## CONSUMS 62 gEfiIp6ProtocolGuid ## CONSUMS 63 gEfiIp6ServiceBindingProtocolGuid ## CONSUMS 64 gEfiIp6ConfigProtocolGuid ## CONSUMS 64 gEfiCpuArchProtocolGuid ## CONSUMES 65 gEfiIp6ProtocolGuid ## CONSUMES 66 gEfiIp6ServiceBindingProtocolGuid ## CONSUMES 67 gEfiIp6ConfigProtocolGuid ## CONSUMES 68 69 [UserExtensions.TianoCore."ExtraFiles"] 70 Ping6Extra.uni -
trunk/src/VBox/Devices/EFI/Firmware/NetworkPkg/Application/VConfig/VConfig.c
r48674 r58459 2 2 Shell application for VLAN configuration. 3 3 4 Copyright ( C) 2009 - 2011, Intel Corporation. All rights reserved.<BR>4 Copyright (c) 2009 - 2013, Intel Corporation. All rights reserved.<BR> 5 5 6 6 This program and the accompanying materials -
trunk/src/VBox/Devices/EFI/Firmware/NetworkPkg/Application/VConfig/VConfig.inf
r48674 r58459 1 1 ## @file 2 # Component files for VLAN configuration shell application.2 # Shell application VLAN configuration. 3 3 # 4 # Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.<BR> 4 # It is shell application which is used to get and set VLAN configuration. 5 # 6 # Copyright (c) 2009 - 2014, Intel Corporation. All rights reserved.<BR> 5 7 # 6 8 # This program and the accompanying materials … … 21 23 VERSION_STRING = 1.0 22 24 ENTRY_POINT = VlanConfigMain 25 MODULE_UNI_FILE = VConfig.uni 23 26 24 27 # … … 45 48 46 49 [Protocols] 47 gEfiVlanConfigProtocolGuid 50 gEfiVlanConfigProtocolGuid ## CONSUMES 51 52 [UserExtensions.TianoCore."ExtraFiles"] 53 VConfigExtra.uni
Note:
See TracChangeset
for help on using the changeset viewer.