OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:UdpService
(Results
1 - 4
of
4
) sorted by null
/device/linaro/bootloader/edk2/NetworkPkg/IpSecDxe/Ikev2/
Exchange.c
24
@param[in]
UdpService
Point to Udp Servcie used for the IKE packet sending.
31
@retval EFI_INVALID_PARAMETER If
UdpService
or RemoteIp is NULL.
37
IN IKE_UDP_SERVICE *
UdpService
,
50
if (
UdpService
== NULL || RemoteIp == NULL) {
55
Private = (
UdpService
->IpVersion == IP_VERSION_4) ?
56
IPSEC_PRIVATE_DATA_FROM_UDP4LIST(
UdpService
->ListHead) :
57
IPSEC_PRIVATE_DATA_FROM_UDP6LIST(
UdpService
->ListHead);
73
IkeSaSession = Ikev2SaSessionAlloc (Private,
UdpService
);
100
&
UdpService
->DefaultAddress,
125
Status = Ikev2SendIkePacket (
UdpService
, (UINT8 *) SessionCommon, IkePacket, 0);
[
all
...]
Ikev2.h
155
IKE_UDP_SERVICE *
UdpService
;
/device/linaro/bootloader/edk2/NetworkPkg/IpSecDxe/
IkeService.c
197
If the
UdpService
is not configured, this fuction calls UdpIoCreatIo() to
198
create UDPIO to bind this
UdpService
for IKE packet sending. If the
UdpService
201
@param[in]
UdpService
The UDP_IO to be configured.
210
IN IKE_UDP_SERVICE *
UdpService
,
228
if (
UdpService
->IsConfigured) {
232
if (
UdpService
->IpVersion == UDP_IO_UDP4_VERSION) {
237
UdpService
->NicHandle,
282
&
UdpService
->DefaultAddress.v4,
290
UdpService
->Output = UdpIoCreateIo (
[
all
...]
IpSecImpl.c
446
IKE_UDP_SERVICE *
UdpService
;
453
UdpService
= IkeLookupUdp (Private, NicHandle, IpVersion);
455
if (
UdpService
== NULL) {
490
UdpService
,
496
UdpService
,
[
all
...]
Completed in 92 milliseconds