]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Include/Protocol/Udp6.h
Clarify the UEFI/EFI specification version in file header comments.
[mirror_edk2.git] / MdePkg / Include / Protocol / Udp6.h
1 /** @file
2 The EFI UDPv6 (User Datagram Protocol version 6) Protocol Definition, which is built upon
3 the EFI IPv6 Protocol and provides simple packet-oriented services to transmit and receive
4 UDP packets.
5
6 Copyright (c) 2008 - 2009, Intel Corporation
7 All rights reserved. This program and the accompanying materials
8 are licensed and made available under the terms and conditions of the BSD License
9 which accompanies this distribution. The full text of the license may be found at
10 http://opensource.org/licenses/bsd-license.php
11
12 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
13 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14
15 @par Revision Reference:
16 This Protocol is introduced in UEFI Specification 2.2
17
18 **/
19
20 #ifndef __EFI_UDP6_PROTOCOL_H__
21 #define __EFI_UDP6_PROTOCOL_H__
22
23 #include <Protocol/Ip6.h>
24
25 #define EFI_UDP6_SERVICE_BINDING_PROTOCOL_GUID \
26 { \
27 0x66ed4721, 0x3c98, 0x4d3e, {0x81, 0xe3, 0xd0, 0x3d, 0xd3, 0x9a, 0x72, 0x54 } \
28 }
29
30 #define EFI_UDP6_PROTOCOL_GUID \
31 { \
32 0x4f948815, 0xb4b9, 0x43cb, {0x8a, 0x33, 0x90, 0xe0, 0x60, 0xb3, 0x49, 0x55 } \
33 }
34
35 typedef struct {
36 ///
37 /// The EFI UDPv6 Protocol instance handle that is using this address/port pair.
38 ///
39 EFI_HANDLE InstanceHandle;
40 ///
41 /// The IPv6 address to which this instance of the EFI UDPv6 Protocol is bound.
42 /// Set to 0::/128, if this instance is used to listen all packets from any
43 /// source address.
44 ///
45 EFI_IPv6_ADDRESS LocalAddress;
46 ///
47 /// The port number in host byte order on which the service is listening.
48 ///
49 UINT16 LocalPort;
50 ///
51 /// The IPv6 address of the remote host. May be 0::/128 if it is not connected
52 /// to any remote host or connected with more than one remote host.
53 ///
54 EFI_IPv6_ADDRESS RemoteAddress;
55 ///
56 /// The port number in host byte order on which the remote host is
57 /// listening. Maybe zero if it is not connected to any remote host.
58 ///
59 UINT16 RemotePort;
60 } EFI_UDP6_SERVICE_POINT;
61
62 typedef struct {
63 ///
64 /// The handle of the driver that creates this entry.
65 ///
66 EFI_HANDLE DriverHandle;
67 ///
68 /// The number of address/port pairs that follow this data structure.
69 ///
70 UINT32 ServiceCount;
71 ///
72 /// List of address/port pairs that are currently in use.
73 ///
74 EFI_UDP6_SERVICE_POINT Services[1];
75 } EFI_UDP6_VARIABLE_DATA;
76
77 typedef struct _EFI_UDP6_PROTOCOL EFI_UDP6_PROTOCOL;
78
79 ///
80 /// EFI_UDP6_FRAGMENT_DATA allows multiple receive or transmit buffers to be specified.
81 /// The purpose of this structure is to avoid copying the same packet multiple times.
82 ///
83 typedef struct {
84 UINT32 FragmentLength; ///< Length of the fragment data buffer.
85 VOID *FragmentBuffer; ///< Pointer to the fragment data buffer.
86 } EFI_UDP6_FRAGMENT_DATA;
87
88 ///
89 /// The EFI_UDP6_SESSION_DATA is used to retrieve the settings when receiving packets or
90 /// to override the existing settings (only DestinationAddress and DestinationPort can
91 /// be overridden) of this EFI UDPv6 Protocol instance when sending packets.
92 ///
93 typedef struct {
94 ///
95 /// Address from which this packet is sent. This field should not be used when
96 /// sending packets.
97 ///
98 EFI_IPv6_ADDRESS SourceAddress;
99 ///
100 /// Port from which this packet is sent. It is in host byte order. This field should
101 /// not be used when sending packets.
102 ///
103 UINT16 SourcePort;
104 ///
105 /// Address to which this packet is sent. When sending packet, it'll be ignored
106 /// if it is zero.
107 ///
108 EFI_IPv6_ADDRESS DestinationAddress;
109 ///
110 /// Port to which this packet is sent. When sending packet, it'll be
111 /// ignored if it is zero.
112 ///
113 UINT16 DestinationPort;
114 } EFI_UDP6_SESSION_DATA;
115
116 typedef struct {
117 ///
118 /// Set to TRUE to accept UDP packets that are sent to any address.
119 ///
120 BOOLEAN AcceptPromiscuous;
121 ///
122 /// Set to TRUE to accept UDP packets that are sent to any port.
123 ///
124 BOOLEAN AcceptAnyPort;
125 ///
126 /// Set to TRUE to allow this EFI UDPv6 Protocol child instance to open a port number
127 /// that is already being used by another EFI UDPv6 Protocol child instance.
128 ///
129 BOOLEAN AllowDuplicatePort;
130 ///
131 /// TrafficClass field in transmitted IPv6 packets.
132 ///
133 UINT8 TrafficClass;
134 ///
135 /// HopLimit field in transmitted IPv6 packets.
136 ///
137 UINT8 HopLimit;
138 ///
139 /// The receive timeout value (number of microseconds) to be associated with each
140 /// incoming packet. Zero means do not drop incoming packets.
141 ///
142 UINT32 ReceiveTimeout;
143 ///
144 /// The transmit timeout value (number of microseconds) to be associated with each
145 /// outgoing packet. Zero means do not drop outgoing packets.
146 ///
147 UINT32 TransmitTimeout;
148 ///
149 /// The station IP address that will be assigned to this EFI UDPv6 Protocol instance.
150 /// The EFI UDPv6 and EFI IPv6 Protocol drivers will only deliver incoming packets
151 /// whose destination matches this IP address exactly. Address 0::/128 is also accepted
152 /// as a special case. Under this situation, underlying IPv6 driver is responsible for
153 /// binding a source address to this EFI IPv6 protocol instance according to source
154 /// address selection algorithm. Only incoming packet from the selected source address
155 /// is delivered. This field can be set and changed only when the EFI IPv6 driver is
156 /// transitioning from the stopped to the started states. If no address is available
157 /// for selecting, the EFI IPv6 Protocol driver will use EFI_IP6_CONFIG_PROTOCOL to
158 /// retrieve the IPv6 address.
159 EFI_IPv6_ADDRESS StationAddress;
160 ///
161 /// The port number to which this EFI UDPv6 Protocol instance is bound. If a client
162 /// of the EFI UDPv6 Protocol does not care about the port number, set StationPort
163 /// to zero. The EFI UDPv6 Protocol driver will assign a random port number to transmitted
164 /// UDP packets. Ignored it if AcceptAnyPort is TRUE.
165 ///
166 UINT16 StationPort;
167 ///
168 /// The IP address of remote host to which this EFI UDPv6 Protocol instance is connecting.
169 /// If RemoteAddress is not 0::/128, this EFI UDPv6 Protocol instance will be connected to
170 /// RemoteAddress; i.e., outgoing packets of this EFI UDPv6 Protocol instance will be sent
171 /// to this address by default and only incoming packets from this address will be delivered
172 /// to client. Ignored for incoming filtering if AcceptPromiscuous is TRUE.
173 EFI_IPv6_ADDRESS RemoteAddress;
174 ///
175 /// The port number of the remote host to which this EFI UDPv6 Protocol instance is connecting.
176 /// If it is not zero, outgoing packets of this EFI UDPv6 Protocol instance will be sent to
177 /// this port number by default and only incoming packets from this port will be delivered
178 /// to client. Ignored if RemoteAddress is 0::/128 and ignored for incoming filtering if
179 /// AcceptPromiscuous is TRUE.
180 UINT16 RemotePort;
181 } EFI_UDP6_CONFIG_DATA;
182
183 ///
184 /// The EFI UDPv6 Protocol client must fill this data structure before sending a packet.
185 /// The packet may contain multiple buffers that may be not in a continuous memory location.
186 ///
187 typedef struct {
188 ///
189 /// If not NULL, the data that is used to override the transmitting settings.Only the two
190 /// filed UdpSessionData.DestinationAddress and UdpSessionData.DestionPort can be used as
191 /// the transmitting setting filed.
192 ///
193 EFI_UDP6_SESSION_DATA *UdpSessionData;
194 ///
195 /// Sum of the fragment data length. Must not exceed the maximum UDP packet size.
196 ///
197 UINT32 DataLength;
198 ///
199 /// Number of fragments.
200 ///
201 UINT32 FragmentCount;
202 ///
203 /// Array of fragment descriptors.
204 ///
205 EFI_UDP6_FRAGMENT_DATA FragmentTable[1];
206 } EFI_UDP6_TRANSMIT_DATA;
207
208 ///
209 /// EFI_UDP6_RECEIVE_DATA is filled by the EFI UDPv6 Protocol driver when this EFI UDPv6
210 /// Protocol instance receives an incoming packet. If there is a waiting token for incoming
211 /// packets, the CompletionToken.Packet.RxData field is updated to this incoming packet and
212 /// the CompletionToken.Event is signaled. The EFI UDPv6 Protocol client must signal the
213 /// RecycleSignal after processing the packet.
214 /// FragmentTable could contain multiple buffers that are not in the continuous memory locations.
215 /// The EFI UDPv6 Protocol client might need to combine two or more buffers in FragmentTable to
216 /// form their own protocol header.
217 ///
218 typedef struct {
219 ///
220 /// Time when the EFI UDPv6 Protocol accepted the packet.
221 ///
222 EFI_TIME TimeStamp;
223 ///
224 /// Indicates the event to signal when the received data has been processed.
225 ///
226 EFI_EVENT RecycleSignal;
227 ///
228 /// The UDP session data including SourceAddress, SourcePort, DestinationAddress,
229 /// and DestinationPort.
230 ///
231 EFI_UDP6_SESSION_DATA UdpSession;
232 ///
233 /// The sum of the fragment data length.
234 ///
235 UINT32 DataLength;
236 ///
237 /// Number of fragments. Maybe zero.
238 ///
239 UINT32 FragmentCount;
240 ///
241 /// Array of fragment descriptors. Maybe zero.
242 ///
243 EFI_UDP6_FRAGMENT_DATA FragmentTable[1];
244 } EFI_UDP6_RECEIVE_DATA;
245
246 ///
247 /// The EFI_UDP6_COMPLETION_TOKEN structures are used for both transmit and receive operations.
248 /// When used for transmitting, the Event and TxData fields must be filled in by the EFI UDPv6
249 /// Protocol client. After the transmit operation completes, the Status field is updated by the
250 /// EFI UDPv6 Protocol and the Event is signaled.
251 /// When used for receiving, only the Event field must be filled in by the EFI UDPv6 Protocol
252 /// client. After a packet is received, RxData and Status are filled in by the EFI UDPv6 Protocol
253 /// and the Event is signaled.
254 ///
255 typedef struct {
256 ///
257 /// This Event will be signaled after the Status field is updated by the EFI UDPv6 Protocol
258 /// driver. The type of Event must be EVT_NOTIFY_SIGNAL.
259 ///
260 EFI_EVENT Event;
261 ///
262 /// Will be set to one of the following values:
263 /// - EFI_SUCCESS: The receive or transmit operation completed successfully.
264 /// - EFI_ABORTED: The receive or transmit was aborted.
265 /// - EFI_TIMEOUT: The transmit timeout expired.
266 /// - EFI_NETWORK_UNREACHABLE: The destination network is unreachable. RxData is set to
267 /// NULL in this situation.
268 /// - EFI_HOST_UNREACHABLE: The destination host is unreachable. RxData is set to NULL in
269 /// this situation.
270 /// - EFI_PROTOCOL_UNREACHABLE: The UDP protocol is unsupported in the remote system.
271 /// RxData is set to NULL in this situation.
272 /// - EFI_PORT_UNREACHABLE: No service is listening on the remote port. RxData is set to
273 /// NULL in this situation.
274 /// - EFI_ICMP_ERROR: Some other Internet Control Message Protocol (ICMP) error report was
275 /// received. For example, packets are being sent too fast for the destination to receive them
276 /// and the destination sent an ICMP source quench report. RxData is set to NULL in this situation.
277 /// - EFI_DEVICE_ERROR: An unexpected system or network error occurred.
278 /// - EFI_SECURITY_VIOLATION: The transmit or receive was failed because of IPsec policy check.
279 ///
280 EFI_STATUS Status;
281 union {
282 ///
283 /// When this token is used for receiving, RxData is a pointer to EFI_UDP6_RECEIVE_DATA.
284 ///
285 EFI_UDP6_RECEIVE_DATA *RxData;
286 ///
287 /// When this token is used for transmitting, TxData is a pointer to EFI_UDP6_TRANSMIT_DATA.
288 ///
289 EFI_UDP6_TRANSMIT_DATA *TxData;
290 } Packet;
291 } EFI_UDP6_COMPLETION_TOKEN;
292
293 /**
294 Read the current operational settings.
295
296 The GetModeData() function copies the current operational settings of this EFI UDPv6 Protocol
297 instance into user-supplied buffers. This function is used optionally to retrieve the operational
298 mode data of underlying networks or drivers.
299
300 @param[in] This Pointer to the EFI_UDP6_PROTOCOL instance.
301 @param[out] Udp6ConfigData The buffer in which the current UDP configuration data is returned.
302 @param[out] Ip6ModeData The buffer in which the current EFI IPv6 Protocol mode data is returned.
303 @param[out] MnpConfigData The buffer in which the current managed network configuration data is
304 returned.
305 @param[out] SnpModeData The buffer in which the simple network mode data is returned.
306
307 @retval EFI_SUCCESS The mode data was read.
308 @retval EFI_NOT_STARTED When Udp6ConfigData is queried, no configuration data is available
309 because this instance has not been started.
310 @retval EFI_INVALID_PARAMETER This is NULL.
311
312 **/
313 typedef
314 EFI_STATUS
315 (EFIAPI *EFI_UDP6_GET_MODE_DATA)(
316 IN EFI_UDP6_PROTOCOL *This,
317 OUT EFI_UDP6_CONFIG_DATA *Udp6ConfigData OPTIONAL,
318 OUT EFI_IP6_MODE_DATA *Ip6ModeData OPTIONAL,
319 OUT EFI_MANAGED_NETWORK_CONFIG_DATA *MnpConfigData OPTIONAL,
320 OUT EFI_SIMPLE_NETWORK_MODE *SnpModeData OPTIONAL
321 );
322
323 /**
324 Initializes, changes, or resets the operational parameters for this instance of the EFI UDPv6
325 Protocol.
326
327 The Configure() function is used to do the following:
328 - Initialize and start this instance of the EFI UDPv6 Protocol.
329 - Change the filtering rules and operational parameters.
330 - Reset this instance of the EFI UDPv6 Protocol.
331
332 Until these parameters are initialized, no network traffic can be sent or received by this instance.
333 This instance can be also reset by calling Configure() with UdpConfigData set to NULL.
334 Once reset, the receiving queue and transmitting queue are flushed and no traffic is allowed through
335 this instance.
336
337 With different parameters in UdpConfigData, Configure() can be used to bind this instance to specified
338 port.
339
340 @param[in] This Pointer to the EFI_UDP6_PROTOCOL instance.
341 @param[in] UdpConfigData Pointer to the buffer contained the configuration data.
342
343 @retval EFI_SUCCESS The configuration settings were set, changed, or reset successfully.
344 @retval EFI_NO_MAPPING The underlying IPv6 driver was responsible for choosing a source
345 address for this instance, but no source address was available for use.
346 @retval EFI_INVALID_PARAMETER One or more following conditions are TRUE:
347 - This is NULL.
348 - UdpConfigData.StationAddress neither zero nor one of the configured IP
349 addresses in the underlying IPv6 driver.
350 - UdpConfigData.RemoteAddress is not a valid unicast IPv6 address if it
351 is not zero.
352 @retval EFI_ALREADY_STARTED The EFI UDPv6 Protocol instance is already started/configured and must be
353 stopped/reset before it can be reconfigured. Only TrafficClass, HopLimit,
354 ReceiveTimeout, and TransmitTimeout can be reconfigured without stopping
355 the current instance of the EFI UDPv6 Protocol.
356 @retval EFI_ACCESS_DENIED UdpConfigData.AllowDuplicatePort is FALSE and UdpConfigData.StationPort
357 is already used by other instance.
358 @retval EFI_OUT_OF_RESOURCES The EFI UDPv6 Protocol driver cannot allocate memory for this EFI UDPv6
359 Protocol instance.
360 @retval EFI_DEVICE_ERROR An unexpected network or system error occurred and this instance was not
361 opened.
362
363 **/
364 typedef
365 EFI_STATUS
366 (EFIAPI *EFI_UDP6_CONFIGURE)(
367 IN EFI_UDP6_PROTOCOL *This,
368 IN EFI_UDP6_CONFIG_DATA *UdpConfigData OPTIONAL
369 );
370
371 /**
372 Joins and leaves multicast groups.
373
374 The Groups() function is used to join or leave one or more multicast group.
375 If the JoinFlag is FALSE and the MulticastAddress is NULL, then all currently joined groups are left.
376
377 @param[in] This Pointer to the EFI_UDP6_PROTOCOL instance.
378 @param[in] JoinFlag Set to TRUE to join a multicast group. Set to FALSE to leave one
379 or all multicast groups.
380 @param[in] MulticastAddress Pointer to multicast group address to join or leave.
381
382 @retval EFI_SUCCESS The operation completed successfully.
383 @retval EFI_NOT_STARTED The EFI UDPv6 Protocol instance has not been started.
384 @retval EFI_OUT_OF_RESOURCES Could not allocate resources to join the group.
385 @retval EFI_INVALID_PARAMETER One or more of the following conditions is TRUE:
386 - This is NULL.
387 - JoinFlag is TRUE and MulticastAddress is NULL.
388 - JoinFlag is TRUE and *MulticastAddress is not a valid multicast address.
389 @retval EFI_ALREADY_STARTED The group address is already in the group table (when JoinFlag is TRUE).
390 @retval EFI_NOT_FOUND The group address is not in the group table (when JoinFlag is FALSE).
391 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred.
392
393 **/
394 typedef
395 EFI_STATUS
396 (EFIAPI *EFI_UDP6_GROUPS)(
397 IN EFI_UDP6_PROTOCOL *This,
398 IN BOOLEAN JoinFlag,
399 IN EFI_IPv6_ADDRESS *MulticastAddress OPTIONAL
400 );
401
402 /**
403 Queues outgoing data packets into the transmit queue.
404
405 The Transmit() function places a sending request to this instance of the EFI UDPv6 Protocol,
406 alongside the transmit data that was filled by the user. Whenever the packet in the token is
407 sent out or some errors occur, the Token.Event will be signaled and Token.Status is updated.
408 Providing a proper notification function and context for the event will enable the user to
409 receive the notification and transmitting status.
410
411 @param[in] This Pointer to the EFI_UDP6_PROTOCOL instance.
412 @param[in] Token Pointer to the completion token that will be placed into the
413 transmit queue.
414
415 @retval EFI_SUCCESS The data has been queued for transmission.
416 @retval EFI_NOT_STARTED This EFI UDPv6 Protocol instance has not been started.
417 @retval EFI_NO_MAPPING The underlying IPv6 driver was responsible for choosing a source
418 address for this instance, but no source address was available
419 for use.
420 @retval EFI_INVALID_PARAMETER One or more of the following are TRUE:
421 - This is NULL.
422 - Token is NULL.
423 - Token.Event is NULL.
424 - Token.Packet.TxData is NULL.
425 - Token.Packet.TxData.FragmentCount is zero.
426 - Token.Packet.TxData.DataLength is not equal to the sum of fragment
427 lengths.
428 - One or more of the Token.Packet.TxData.FragmentTable[].FragmentLength
429 fields is zero.
430 - One or more of the Token.Packet.TxData.FragmentTable[].FragmentBuffer
431 fields is NULL.
432 - Token.Packet.TxData.UdpSessionData.DestinationAddress is not zero
433 and is not valid unicast Ipv6 address if UdpSessionData is not NULL.
434 - Token.Packet.TxData.UdpSessionData is NULL and this instance's
435 UdpConfigData.RemoteAddress is unspecified.
436 - Token.Packet.TxData.UdpSessionData.DestinationAddress is non-zero
437 when DestinationAddress is configured as non-zero when doing Configure()
438 for this EFI Udp6 protocol instance.
439 - Token.Packet.TxData.UdpSesionData.DestinationAddress is zero when
440 DestinationAddress is unspecified when doing Configure() for this
441 EFI Udp6 protocol instance.
442 @retval EFI_ACCESS_DENIED The transmit completion token with the same Token.Event was already
443 in the transmit queue.
444 @retval EFI_NOT_READY The completion token could not be queued because the transmit queue
445 is full.
446 @retval EFI_OUT_OF_RESOURCES Could not queue the transmit data.
447 @retval EFI_NOT_FOUND There is no route to the destination network or address.
448 @retval EFI_BAD_BUFFER_SIZE The data length is greater than the maximum UDP packet size.
449
450 **/
451 typedef
452 EFI_STATUS
453 (EFIAPI *EFI_UDP6_TRANSMIT)(
454 IN EFI_UDP6_PROTOCOL *This,
455 IN EFI_UDP6_COMPLETION_TOKEN *Token
456 );
457
458 /**
459 Places an asynchronous receive request into the receiving queue.
460
461 The Receive() function places a completion token into the receive packet queue. This function is
462 always asynchronous.
463 The caller must fill in the Token.Event field in the completion token, and this field cannot be
464 NULL. When the receive operation completes, the EFI UDPv6 Protocol driver updates the Token.Status
465 and Token.Packet.RxData fields and the Token.Event is signaled.
466 Providing a proper notification function and context for the event will enable the user to receive
467 the notification and receiving status. That notification function is guaranteed to not be re-entered.
468
469 @param[in] This Pointer to the EFI_UDP6_PROTOCOL instance.
470 @param[in] Token Pointer to a token that is associated with the receive data descriptor.
471
472 @retval EFI_SUCCESS The receive completion token was cached.
473 @retval EFI_NOT_STARTED This EFI UDPv6 Protocol instance has not been started.
474 @retval EFI_NO_MAPPING The underlying IPv6 driver was responsible for choosing a source
475 address for this instance, but no source address was available
476 for use.
477 @retval EFI_INVALID_PARAMETER One or more of the following is TRUE:
478 - This is NULL.
479 - Token is NULL.
480 - Token.Event is NULL.
481 @retval EFI_OUT_OF_RESOURCES The receive completion token could not be queued due to a lack of system
482 resources (usually memory).
483 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred. The EFI UDPv6 Protocol
484 instance has been reset to startup defaults.
485 @retval EFI_ACCESS_DENIED A receive completion token with the same Token.Event was already in
486 the receive queue.
487 @retval EFI_NOT_READY The receive request could not be queued because the receive queue is full.
488
489 **/
490 typedef
491 EFI_STATUS
492 (EFIAPI *EFI_UDP6_RECEIVE)(
493 IN EFI_UDP6_PROTOCOL *This,
494 IN EFI_UDP6_COMPLETION_TOKEN *Token
495 );
496
497 /**
498 Aborts an asynchronous transmit or receive request.
499
500 The Cancel() function is used to abort a pending transmit or receive request. If the token is in the
501 transmit or receive request queues, after calling this function, Token.Status will be set to
502 EFI_ABORTED and then Token.Event will be signaled. If the token is not in one of the queues,
503 which usually means that the asynchronous operation has completed, this function will not signal the
504 token and EFI_NOT_FOUND is returned.
505
506 @param[in] This Pointer to the EFI_UDP6_PROTOCOL instance.
507 @param[in] Token Pointer to a token that has been issued by EFI_UDP6_PROTOCOL.Transmit()
508 or EFI_UDP6_PROTOCOL.Receive().If NULL, all pending tokens are aborted.
509
510 @retval EFI_SUCCESS The asynchronous I/O request was aborted and Token.Event was signaled.
511 When Token is NULL, all pending requests are aborted and their events
512 are signaled.
513 @retval EFI_INVALID_PARAMETER This is NULL.
514 @retval EFI_NOT_STARTED This instance has not been started.
515 @retval EFI_NOT_FOUND When Token is not NULL, the asynchronous I/O request was not found in
516 the transmit or receive queue. It has either completed or was not issued
517 by Transmit() and Receive().
518
519 **/
520 typedef
521 EFI_STATUS
522 (EFIAPI *EFI_UDP6_CANCEL)(
523 IN EFI_UDP6_PROTOCOL *This,
524 IN EFI_UDP6_COMPLETION_TOKEN *Token OPTIONAL
525 );
526
527 /**
528 Polls for incoming data packets and processes outgoing data packets.
529
530 The Poll() function can be used by network drivers and applications to increase the rate that data
531 packets are moved between the communications device and the transmit and receive queues.
532 In some systems, the periodic timer event in the managed network driver may not poll the underlying
533 communications device fast enough to transmit and/or receive all data packets without missing incoming
534 packets or dropping outgoing packets. Drivers and applications that are experiencing packet loss should
535 try calling the Poll() function more often.
536
537 @param[in] This Pointer to the EFI_UDP6_PROTOCOL instance.
538
539 @retval EFI_SUCCESS Incoming or outgoing data was processed.
540 @retval EFI_INVALID_PARAMETER This is NULL.
541 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred.
542 @retval EFI_TIMEOUT Data was dropped out of the transmit and/or receive queue.
543 Consider increasing the polling rate.
544
545 **/
546 typedef
547 EFI_STATUS
548 (EFIAPI *EFI_UDP6_POLL)(
549 IN EFI_UDP6_PROTOCOL *This
550 );
551
552 ///
553 /// The EFI_UDP6_PROTOCOL defines an EFI UDPv6 Protocol session that can be used by any network drivers,
554 /// applications, or daemons to transmit or receive UDP packets. This protocol instance can either be
555 /// bound to a specified port as a service or connected to some remote peer as an active client.
556 /// Each instance has its own settings, such as group table, that are independent from each other.
557 ///
558 struct _EFI_UDP6_PROTOCOL {
559 EFI_UDP6_GET_MODE_DATA GetModeData;
560 EFI_UDP6_CONFIGURE Configure;
561 EFI_UDP6_GROUPS Groups;
562 EFI_UDP6_TRANSMIT Transmit;
563 EFI_UDP6_RECEIVE Receive;
564 EFI_UDP6_CANCEL Cancel;
565 EFI_UDP6_POLL Poll;
566 };
567
568 extern EFI_GUID gEfiUdp6ServiceBindingProtocolGuid;
569 extern EFI_GUID gEfiUdp6ProtocolGuid;
570
571 #endif