]> git.proxmox.com Git - mirror_edk2.git/blob - NetworkPkg/Application/IpsecConfig/Dump.h
NetworkPkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / NetworkPkg / Application / IpsecConfig / Dump.h
1 /** @file
2 The function declaration of dump policy entry function in IpSecConfig application.
3
4 Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.<BR>
5
6 SPDX-License-Identifier: BSD-2-Clause-Patent
7
8 **/
9
10 #ifndef _DUMP_H_
11 #define _DUMP_H_
12
13 /**
14 Print all entry information in the database according to datatype.
15
16 @param[in] DataType The value of EFI_IPSEC_CONFIG_DATA_TYPE.
17 @param[in] ParamPackage The pointer to the ParamPackage list.
18
19 @retval EFI_SUCCESS Dump all information successfully.
20 @retval Others Some mistaken case.
21 **/
22 EFI_STATUS
23 ListPolicyEntry (
24 IN EFI_IPSEC_CONFIG_DATA_TYPE DataType,
25 IN LIST_ENTRY *ParamPackage
26 );
27
28 #endif