mirror of https://github.com/acidanthera/audk.git
NetworkPkg: Coding style refine for IpSecDxe
Cc: Bi Dandan <dandan.bi@intel.com> Cc: Fu Siyuan <siyuan.fu@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jiaxin Wu <jiaxin.wu@intel.com> Reviewed-by: Dandan Bi <dandan.bi@intel.com>
This commit is contained in:
parent
c3926cdbbd
commit
55d05ae145
|
@ -201,9 +201,9 @@ IkePayloadFree (
|
||||||
/**
|
/**
|
||||||
Generate an new SPI.
|
Generate an new SPI.
|
||||||
|
|
||||||
@param[in] IkeSaSession Pointer to IKEV2_SA_SESSION related to this Child SA
|
@param[in] IkeSaSession Pointer to IKEV2_SA_SESSION related to this Child SA
|
||||||
Session.
|
Session.
|
||||||
@param[in out] SpiValue Pointer to the new generated SPI value.
|
@param[in, out] SpiValue Pointer to the new generated SPI value.
|
||||||
|
|
||||||
@retval EFI_SUCCESS The operation performs successfully.
|
@retval EFI_SUCCESS The operation performs successfully.
|
||||||
@retval Otherwise The operation is failed.
|
@retval Otherwise The operation is failed.
|
||||||
|
@ -211,8 +211,8 @@ IkePayloadFree (
|
||||||
**/
|
**/
|
||||||
EFI_STATUS
|
EFI_STATUS
|
||||||
IkeGenerateSpi (
|
IkeGenerateSpi (
|
||||||
IN IKEV2_SA_SESSION *IkeSaSession,
|
IN IKEV2_SA_SESSION *IkeSaSession,
|
||||||
OUT UINT32 *SpiValue
|
IN OUT UINT32 *SpiValue
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
EFI_STATUS Status;
|
EFI_STATUS Status;
|
||||||
|
|
|
@ -132,9 +132,9 @@ IkePayloadFree (
|
||||||
/**
|
/**
|
||||||
Generate an new SPI.
|
Generate an new SPI.
|
||||||
|
|
||||||
@param[in] IkeSaSession Pointer to IKEV2_SA_SESSION related to this Child SA
|
@param[in] IkeSaSession Pointer to IKEV2_SA_SESSION related to this Child SA
|
||||||
Session.
|
Session.
|
||||||
@param[in out] SpiValue Pointer to the new generated SPI value.
|
@param[in, out] SpiValue Pointer to the new generated SPI value.
|
||||||
|
|
||||||
@retval EFI_SUCCESS The operation performs successfully.
|
@retval EFI_SUCCESS The operation performs successfully.
|
||||||
@retval Otherwise The operation is failed.
|
@retval Otherwise The operation is failed.
|
||||||
|
@ -142,8 +142,8 @@ IkePayloadFree (
|
||||||
**/
|
**/
|
||||||
EFI_STATUS
|
EFI_STATUS
|
||||||
IkeGenerateSpi (
|
IkeGenerateSpi (
|
||||||
IN IKEV2_SA_SESSION *IkeSaSession,
|
IN IKEV2_SA_SESSION *IkeSaSession,
|
||||||
OUT UINT32 *SpiValue
|
IN OUT UINT32 *SpiValue
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue