]> git.proxmox.com Git - mirror_edk2.git/blob - AppPkg/Applications/Sockets/WebServer/Firmware.c
Add Socket Library applications.
[mirror_edk2.git] / AppPkg / Applications / Sockets / WebServer / Firmware.c
1 /*++
2 This file contains an 'Intel UEFI Application' and is
3 licensed for Intel CPUs and chipsets under the terms of your
4 license agreement with Intel or your vendor. This file may
5 be modified by the user, subject to additional terms of the
6 license agreement
7 --*/
8 /*++
9
10 Copyright (c) 2011 Intel Corporation. All rights reserved
11 This software and associated documentation (if any) is furnished
12 under a license and may only be used or copied in accordance
13 with the terms of the license. Except as permitted by such
14 license, no part of this software or documentation may be
15 reproduced, stored in a retrieval system, or transmitted in any
16 form or by any means without the express written consent of
17 Intel Corporation.
18
19 --*/
20
21 /** @file
22 Display the firmware
23
24 **/
25
26 #include <WebServer.h>
27
28
29 /**
30 Respond with the firmware status
31
32 @param [in] SocketFD The socket's file descriptor to add to the list.
33 @param [in] pPort The WSDT_PORT structure address
34 @param [out] pbDone Address to receive the request completion status
35
36 @retval EFI_SUCCESS The request was successfully processed
37
38 **/
39 EFI_STATUS
40 FirmwarePage (
41 IN int SocketFD,
42 IN WSDT_PORT * pPort,
43 OUT BOOLEAN * pbDone
44 )
45 {
46 EFI_STATUS Status;
47
48 DBG_ENTER ( );
49
50 //
51 // Send the system table page
52 //
53 for ( ; ; ) {
54 //
55 // Send the page and table header
56 //
57 Status = TableHeader ( SocketFD, pPort, L"Firmware", NULL );
58 if ( EFI_ERROR ( Status )) {
59 break;
60 }
61
62 //
63 // Display the firmware vendor and revision
64 //
65 Status = RowUnicodeString ( SocketFD,
66 pPort,
67 "Vendor",
68 gST->FirmwareVendor );
69 if ( EFI_ERROR ( Status )) {
70 break;
71 }
72
73 Status = RowRevision ( SocketFD,
74 pPort,
75 "Revision",
76 gST->FirmwareRevision );
77 if ( EFI_ERROR ( Status )) {
78 break;
79 }
80
81 //
82 // Display the UEFI version
83 //
84 Status = RowRevision ( SocketFD,
85 pPort,
86 "UEFI",
87 gST->Hdr.Revision );
88 if ( EFI_ERROR ( Status )) {
89 break;
90 }
91
92 //
93 // Build the table trailer
94 //
95 Status = TableTrailer ( SocketFD,
96 pPort,
97 pbDone );
98 break;
99 }
100
101 //
102 // Return the operation status
103 //
104 DBG_EXIT_STATUS ( Status );
105 return Status;
106 }