OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ChildSaSession
(Results
1 - 6
of
6
) sorted by null
/device/linaro/bootloader/edk2/NetworkPkg/IpSecDxe/Ikev2/
ChildSa.c
37
IKEV2_CHILD_SA_SESSION *
ChildSaSession
;
46
ChildSaSession
= (IKEV2_CHILD_SA_SESSION *) SaSession;
47
if (
ChildSaSession
== NULL) {
65
if (
ChildSaSession
->SessionCommon.IkeSessionType == IkeSessionTypeChildSa) {
69
IkePacket->Header->InitiatorCookie =
ChildSaSession
->IkeSaSession->InitiatorCookie;
70
IkePacket->Header->ResponderCookie =
ChildSaSession
->IkeSaSession->ResponderCookie;
75
IkePacket->Header->MessageId =
ChildSaSession
->MessageId;
78
if (
ChildSaSession
->SessionCommon.IsInitiator) {
Info.c
42
IKEV2_CHILD_SA_SESSION *
ChildSaSession
;
140
ChildSaSession
= (IKEV2_CHILD_SA_SESSION *) SaSession;
141
IkeSaSession =
ChildSaSession
->IkeSaSession;
142
IkePacket->Header->InitiatorCookie =
ChildSaSession
->IkeSaSession->InitiatorCookie;
143
IkePacket->Header->ResponderCookie =
ChildSaSession
->IkeSaSession->ResponderCookie;
152
IkePacket->Header->MessageId =
ChildSaSession
->IkeSaSession->MessageId;
157
ChildSaSession
->IkeSaSession,
161
(UINT8 *)&
ChildSaSession
->LocalPeerSpi
173
IkePacket->Spi =
ChildSaSession
->LocalPeerSpi;
176
if (!
ChildSaSession
->SessionCommon.IsInitiator) {
[
all
...]
Exchange.c
174
IKEV2_CHILD_SA_SESSION *
ChildSaSession
;
190
// Create a new
ChildSaSession
and initiate the common parameters.
192
ChildSaSession
= Ikev2ChildSaSessionAlloc (UdpService, SaSession);
194
if (
ChildSaSession
== NULL) {
201
ChildSaSession
->Spd = SpdEntry;
202
ChildSaCommon = &
ChildSaSession
->SessionCommon;
209
ChildSaSession
->ProtoId = SpdEntry->Selector->NextLayerProtocol;
213
ChildSaSession
->LocalPort = SpdEntry->Selector->LocalPort;
217
ChildSaSession
->RemotePort = SpdEntry->Selector->RemotePort;
220
// Initiate the SAD data parameters of the
ChildSaSession
.
[
all
...]
Sa.c
57
@param[in]
ChildSaSession
Pointer to IKE Child SA Session.
66
IN IKEV2_CHILD_SA_SESSION *
ChildSaSession
,
441
IKEV2_CHILD_SA_SESSION *
ChildSaSession
;
445
ChildSaSession
= IKEV2_CHILD_SA_SESSION_BY_IKE_SA (GetFirstNode (&IkeSaSession->ChildSaSessionList));
472
if (
ChildSaSession
->SessionCommon.IsInitiator) {
509
ChildSaSession
->IkeSaSession,
516
ChildSaSession
->IkeSaSession,
523
ChildSaSession
->IkeSaSession,
529
ChildSaSession
->IkeSaSession,
545
// 4. Generate SA Payload according to the SA Data in
ChildSaSession
[
all
...]
Utility.c
513
IKEV2_CHILD_SA_SESSION *
ChildSaSession
;
517
ChildSaSession
= AllocateZeroPool (sizeof (IKEV2_CHILD_SA_SESSION));
518
if (
ChildSaSession
== NULL) {
523
// Initialize the fields of
ChildSaSession
and its SessionCommon.
525
ChildSaSession
->Signature = IKEV2_CHILD_SA_SESSION_SIGNATURE;
526
ChildSaSession
->IkeSaSession = IkeSaSession;
527
ChildSaSession
->MessageId = IkeSaSession->MessageId;
532
Status = IkeGenerateSpi (IkeSaSession, &(
ChildSaSession
->LocalPeerSpi));
534
FreePool (
ChildSaSession
);
538
ChildSaCommon = &
ChildSaSession
->SessionCommon;
[
all
...]
Payload.c
[
all
...]
Completed in 2558 milliseconds