summaryrefslogtreecommitdiff
path: root/NetworkPkg/IpSecDxe/IkeService.h
diff options
context:
space:
mode:
authorRyan Harkin <ryan.harkin@linaro.org>2013-05-23 19:17:33 +0100
committerRyan Harkin <ryan.harkin@linaro.org>2013-05-23 19:17:33 +0100
commit05575f2d38e4640753f65c7227864366aeb428a0 (patch)
treefa6136b7b8e14a0199ebc47739fb59c0f7dafd7e /NetworkPkg/IpSecDxe/IkeService.h
parent09259ca7b67143923d74f521a4f9b115489083cc (diff)
parent45bc9ecfc5c2e5af90bdf05a3f4b8c378e8a8dbe (diff)
Merge branch 'linaro-release' of git://git.linaro.org/arm/uefi/uefi-next.gitlinaro-uefi-2013.05
Signed-off-by: Ryan Harkin <ryan.harkin@linaro.org>
Diffstat (limited to 'NetworkPkg/IpSecDxe/IkeService.h')
-rw-r--r--NetworkPkg/IpSecDxe/IkeService.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/NetworkPkg/IpSecDxe/IkeService.h b/NetworkPkg/IpSecDxe/IkeService.h
index cc21154ac..3ebd17919 100644
--- a/NetworkPkg/IpSecDxe/IkeService.h
+++ b/NetworkPkg/IpSecDxe/IkeService.h
@@ -1,7 +1,7 @@
/** @file
Prototypes definitions of IKE service.
- Copyright (c) 2010 - 2011, Intel Corporation. All rights reserved.<BR>
+ Copyright (c) 2010 - 2013, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
@@ -143,6 +143,7 @@ typedef struct _IKE_EXCHANGE_INTERFACE {
@param[in] Private Point to IPSEC_PRIVATE_DATA
@param[in] Controller Handler for NIC card.
+ @param[in] ImageHandle The handle that contains the EFI_DRIVER_BINDING_PROTOCOL instance.
@retval EFI_SUCCESS The Operation is successful.
@retval EFI_OUT_OF_RESOURCE The required system resource can't be allocated.
@@ -151,7 +152,8 @@ typedef struct _IKE_EXCHANGE_INTERFACE {
EFI_STATUS
IkeOpenInputUdp4 (
IN IPSEC_PRIVATE_DATA *Private,
- IN EFI_HANDLE Controller
+ IN EFI_HANDLE Controller,
+ IN EFI_HANDLE ImageHandle
);
/**
@@ -162,6 +164,7 @@ IkeOpenInputUdp4 (
@param[in] Private Point to IPSEC_PRIVATE_DATA
@param[in] Controller Handler for NIC card.
+ @param[in] ImageHandle The handle that contains the EFI_DRIVER_BINDING_PROTOCOL instance.
@retval EFI_SUCCESS The Operation is successful.
@retval EFI_OUT_OF_RESOURCE The required system resource can't be allocated.
@@ -170,7 +173,8 @@ IkeOpenInputUdp4 (
EFI_STATUS
IkeOpenInputUdp6 (
IN IPSEC_PRIVATE_DATA *Private,
- IN EFI_HANDLE Controller
+ IN EFI_HANDLE Controller,
+ IN EFI_HANDLE ImageHandle
);
/**