mirror of https://github.com/acidanthera/audk.git
1.refined doxgen format.
2.remove duplicated typedef. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9086 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
8f3e12297a
commit
5e6f3ee295
|
@ -675,7 +675,7 @@ EFI_STATUS
|
||||||
(EFIAPI *EFI_IP6_ROUTES)(
|
(EFIAPI *EFI_IP6_ROUTES)(
|
||||||
IN EFI_IP6_PROTOCOL *This,
|
IN EFI_IP6_PROTOCOL *This,
|
||||||
IN BOOLEAN DeleteRoute,
|
IN BOOLEAN DeleteRoute,
|
||||||
IN EFI_IPv6_ADDRESS *Destination, OPTIONAL
|
IN EFI_IPv6_ADDRESS *Destination OPTIONAL,
|
||||||
IN UINT8 PrefixLength,
|
IN UINT8 PrefixLength,
|
||||||
IN EFI_IPv6_ADDRESS *GatewayAddress OPTIONAL
|
IN EFI_IPv6_ADDRESS *GatewayAddress OPTIONAL
|
||||||
);
|
);
|
||||||
|
@ -894,7 +894,7 @@ EFI_STATUS
|
||||||
/// The EFI IPv6 Protocol implements a simple packet-oriented interface that can be
|
/// The EFI IPv6 Protocol implements a simple packet-oriented interface that can be
|
||||||
/// used by drivers, daemons, and applications to transmit and receive network packets.
|
/// used by drivers, daemons, and applications to transmit and receive network packets.
|
||||||
///
|
///
|
||||||
typedef struct _EFI_IP6_PROTOCOL {
|
struct _EFI_IP6_PROTOCOL {
|
||||||
EFI_IP6_GET_MODE_DATA GetModeData;
|
EFI_IP6_GET_MODE_DATA GetModeData;
|
||||||
EFI_IP6_CONFIGURE Configure;
|
EFI_IP6_CONFIGURE Configure;
|
||||||
EFI_IP6_GROUPS Groups;
|
EFI_IP6_GROUPS Groups;
|
||||||
|
@ -904,7 +904,7 @@ typedef struct _EFI_IP6_PROTOCOL {
|
||||||
EFI_IP6_RECEIVE Receive;
|
EFI_IP6_RECEIVE Receive;
|
||||||
EFI_IP6_CANCEL Cancel;
|
EFI_IP6_CANCEL Cancel;
|
||||||
EFI_IP6_POLL Poll;
|
EFI_IP6_POLL Poll;
|
||||||
} EFI_IP6_PROTOCOL;
|
};
|
||||||
|
|
||||||
extern EFI_GUID gEfiIp6ServiceBindingProtocolGuid;
|
extern EFI_GUID gEfiIp6ServiceBindingProtocolGuid;
|
||||||
extern EFI_GUID gEfiIp6ProtocolGuid;
|
extern EFI_GUID gEfiIp6ProtocolGuid;
|
||||||
|
|
|
@ -356,12 +356,12 @@ EFI_STATUS
|
||||||
/// The EFI_IP6_CONFIG_PROTOCOL provides the mechanism to set and get various
|
/// The EFI_IP6_CONFIG_PROTOCOL provides the mechanism to set and get various
|
||||||
/// types of configurations for the EFI IPv6 network stack.
|
/// types of configurations for the EFI IPv6 network stack.
|
||||||
///
|
///
|
||||||
typedef struct _EFI_IP6_CONFIG_PROTOCOL {
|
struct _EFI_IP6_CONFIG_PROTOCOL {
|
||||||
EFI_IP6_CONFIG_SET_DATA SetData;
|
EFI_IP6_CONFIG_SET_DATA SetData;
|
||||||
EFI_IP6_CONFIG_GET_DATA GetData;
|
EFI_IP6_CONFIG_GET_DATA GetData;
|
||||||
EFI_IP6_CONFIG_REGISTER_NOTIFY RegisterDataNotify;
|
EFI_IP6_CONFIG_REGISTER_NOTIFY RegisterDataNotify;
|
||||||
EFI_IP6_CONFIG_UNREGISTER_NOTIFY UnregisterDataNotify;
|
EFI_IP6_CONFIG_UNREGISTER_NOTIFY UnregisterDataNotify;
|
||||||
} EFI_IP6_CONFIG_PROTOCOL;
|
};
|
||||||
|
|
||||||
extern EFI_GUID gEfiIp6ConfigProtocolGuid;
|
extern EFI_GUID gEfiIp6ConfigProtocolGuid;
|
||||||
|
|
||||||
|
|
|
@ -35,7 +35,6 @@
|
||||||
|
|
||||||
typedef struct _EFI_TCP6_PROTOCOL EFI_TCP6_PROTOCOL;
|
typedef struct _EFI_TCP6_PROTOCOL EFI_TCP6_PROTOCOL;
|
||||||
|
|
||||||
|
|
||||||
///
|
///
|
||||||
/// EFI_TCP6_SERVICE_POINT
|
/// EFI_TCP6_SERVICE_POINT
|
||||||
///
|
///
|
||||||
|
@ -834,7 +833,7 @@ EFI_STATUS
|
||||||
/// specified port as a service or actively connect to remote peer as a client.
|
/// specified port as a service or actively connect to remote peer as a client.
|
||||||
/// Each instance has its own independent settings.
|
/// Each instance has its own independent settings.
|
||||||
///
|
///
|
||||||
typedef struct _EFI_TCP6_PROTOCOL {
|
struct _EFI_TCP6_PROTOCOL {
|
||||||
EFI_TCP6_GET_MODE_DATA GetModeData;
|
EFI_TCP6_GET_MODE_DATA GetModeData;
|
||||||
EFI_TCP6_CONFIGURE Configure;
|
EFI_TCP6_CONFIGURE Configure;
|
||||||
EFI_TCP6_CONNECT Connect;
|
EFI_TCP6_CONNECT Connect;
|
||||||
|
@ -844,7 +843,7 @@ typedef struct _EFI_TCP6_PROTOCOL {
|
||||||
EFI_TCP6_CLOSE Close;
|
EFI_TCP6_CLOSE Close;
|
||||||
EFI_TCP6_CANCEL Cancel;
|
EFI_TCP6_CANCEL Cancel;
|
||||||
EFI_TCP6_POLL Poll;
|
EFI_TCP6_POLL Poll;
|
||||||
} EFI_TCP6_PROTOCOL;
|
};
|
||||||
|
|
||||||
extern EFI_GUID gEfiTcp6ServiceBindingProtocolGuid;
|
extern EFI_GUID gEfiTcp6ServiceBindingProtocolGuid;
|
||||||
extern EFI_GUID gEfiTcp6ProtocolGuid;
|
extern EFI_GUID gEfiTcp6ProtocolGuid;
|
||||||
|
|
Loading…
Reference in New Issue