summaryrefslogtreecommitdiff
path: root/Protocol/Smtp/Smtp.h
blob: 622ec7b81866b9405f79ea102ba8b7dec46c23c1 (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
//
// 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:

  Smtp.h

Abstract:

  This code abstracts SMTP Protocol 

--*/

#ifndef _EFI_SMTP_PROTOCOL_
#define _EFI_SMTP_PROTOCOL_

#include "Tiano.h"

#define EFI_SMTP_PROTOCOL_GUID \
  { \
    0x5f67d40c, 0x1d06, 0x4e3e, 0x8b, 0x4a, 0xd2, 0x71, 0x3f, 0x46, 0xe1, 0xdc \
  }

#define SMTP_PORT 25

EFI_FORWARD_DECLARATION (EFI_SMTP_PROTOCOL);

typedef
EFI_STATUS
(EFIAPI *EFI_SMTP_GET_SERVER) (
  IN EFI_SMTP_PROTOCOL                * This,
  IN OUT UINT32                       *UrlStringSize,
  OUT EFI_IP_ADDRESS                  * ServerAddress,
  OUT UINT8                           *ServerUrl
  );

typedef
EFI_STATUS
(EFIAPI *EFI_SMTP_SET_SERVER) (
  IN EFI_SMTP_PROTOCOL                * This,
  IN OUT EFI_IP_ADDRESS               * ServerAddress,
  IN OUT UINT8                        *ServerUrl
  );

typedef
EFI_STATUS
(EFIAPI *EFI_SMTP_SEND_MAIL) (
  IN EFI_SMTP_PROTOCOL                * This,
  IN UINT8                            *Message,
  IN UINT8                            *Subject,
  IN UINT8                            *Sender,
  IN UINT8                            *Receiver
  );

//
// SMTP PROTOCOL
//
typedef struct _EFI_SMTP_PROTOCOL {
  EFI_SMTP_SEND_MAIL  SendMail;
  EFI_SMTP_SET_SERVER SetMailServer;
  EFI_SMTP_GET_SERVER GetMailServer;
} EFI_SMTP_PROTOCOL;

extern EFI_GUID gEfiSmtpProtocolGuid;

#endif