summaryrefslogtreecommitdiff
path: root/Protocol/TcpSock/TcpSock.h
blob: 9db3c20e6da25ed03755b9169f5693a2dd2355bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
//
// This file contains 'Framework Code' and is licensed as such 
// under the terms of your license agreement with Intel or your
// vendor.  This file may not be modified, except as allowed by
// additional terms of your license agreement.                 
//
/*++

Copyright (c)  1999 - 2002 Intel Corporation. All rights reserved
This software and associated documentation (if any) is furnished
under a license and may only be used or copied in accordance
with the terms of the license. Except as permitted by such
license, no part of this software or documentation may be
reproduced, stored in a retrieval system, or transmitted in any
form or by any means without the express written consent of
Intel Corporation.


Module Name:

  TcpSock.h

Abstract:

  This code abstracts TCP Socket Protocol 

--*/

#ifndef _EFI_TCP_SOCK_PROTOCOL_
#define _EFI_TCP_SOCK_PROTOCOL_

#include "Tiano.h"
#include EFI_PROTOCOL_DEFINITION (Tcp)

#define EFI_TCP_SOCK_PROTOCOL_GUID \
  { \
    0x5187359b, 0x790d, 0x425b, 0xa5, 0x93, 0xca, 0x1c, 0xdb, 0x3c, 0xeb, 0xad \
  }

EFI_FORWARD_DECLARATION (EFI_TCP_SOCK_PROTOCOL);

typedef
VOID
(EFIAPI *FIN_CALLBACK_FUNCTION) ();

typedef
EFI_STATUS
(EFIAPI *EFI_TCP_SOCKET_WRITE_DATA) (
  IN EFI_TCP_SOCK_PROTOCOL             * This,
  IN UINT8                             SocketId,
  IN UINT8                             *Data,
  IN UINTN                             Size,
  IN BOOLEAN                           Blocked
  );

typedef
EFI_STATUS
(EFIAPI *EFI_TCP_SOCKET_READ_DATA) (
  IN EFI_TCP_SOCK_PROTOCOL            * This,
  IN UINT8                            SocketId,
  IN OUT UINT8                        *Data,
  IN OUT UINTN                        *Size,
  IN BOOLEAN                          Blocked
  );

typedef
EFI_STATUS
(EFIAPI *EFI_TCP_DISCONNECT_SOCKET) (
  IN EFI_TCP_SOCK_PROTOCOL              * This,
  UINT8                                 SocketId,
  BOOLEAN                               Forced
  );

typedef
EFI_STATUS
(EFIAPI *EFI_TCP_CONNECT_SOCKET) (
  IN EFI_TCP_SOCK_PROTOCOL            * This,
  IN EFI_IP_ADDRESS                   * DestIp,
  IN UINT16                           SrcPort,
  IN UINT16                           DestPort,
  IN FIN_CALLBACK_FUNCTION            FinCallback,
  OUT UINT8                           *SocketId
  );

//
// TCP SOCK PROTOCOL
//
typedef struct _EFI_TCP_SOCK_PROTOCOL {
  EFI_TCP_CONNECT_SOCKET    ConnectSocket;
  EFI_TCP_DISCONNECT_SOCKET DisconnectSocket;
  EFI_TCP_SOCKET_READ_DATA  ReadSocketData;
  EFI_TCP_SOCKET_WRITE_DATA WriteSocketData;
} EFI_TCP_SOCK_PROTOCOL;

extern EFI_GUID gEfiTcpSockProtocolGuid;

#endif