Acidanthera UEFI Development Kit based on EDK II edk2-stable202311
Go to file
lpleahy f74dc4bbba Fix issues detected by python web-server.
* Removed display of TPL
* Added NOP implementation for SO_REUSEADDR
* Add better detection of socket address
* Return first address

Signed-off-by: lpleahy

Python Web server below:

---------------

import sys
import BaseHTTPServer
from SimpleHTTPServer import SimpleHTTPRequestHandler


HandlerClass = SimpleHTTPRequestHandler
ServerClass  = BaseHTTPServer.HTTPServer
Protocol     = "HTTP/1.0"

port = 80
server_address = ('', port)

HandlerClass.protocol_version = Protocol
httpd = ServerClass(server_address, HandlerClass)

sa = httpd.socket.getsockname()
print "Serving HTTP on", sa[0], "port", sa[1], "..."
httpd.serve_forever()




git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13034 6f19259b-4bc3-4df7-8a09-765794883524
2012-02-24 18:45:09 +00:00
AppPkg Fix the errors detected by the GCC compiler: 2012-02-17 23:45:45 +00:00
ArmPkg ArmPkg/BdsLib: Added support for using uInitrd 2012-02-24 16:11:51 +00:00
ArmPlatformPkg ArmPlatformPkg/Bds: Add support for 'BootCurrent' 2012-02-09 15:34:16 +00:00
BaseTools Set executable attributes for those run scripts. 2012-02-15 08:06:01 +00:00
BeagleBoardPkg BeagleBaordPkg: Removed out of date comment in FDF file about USB stack 2012-01-11 10:52:57 +00:00
Conf Adding top-level Conf directory for next generation of EDK II build infrastructure tools. 2007-06-20 19:33:23 +00:00
CryptoPkg Change Openssl build option for IPF back to SIXTY_FOUR_BIT. 2011-12-26 02:18:13 +00:00
DuetPkg DuetPkg BootSector: fix a bug in st32_64.S that the size for GDTR.limit is wrong. 2012-01-18 03:28:42 +00:00
EdkCompatibilityPkg Add Missing invocations to VA_END() for VA_START(). 2012-02-01 06:06:08 +00:00
EdkShellBinPkg Update the Package version. 2011-12-13 08:32:29 +00:00
EdkShellPkg Uses DEFINE instead of define keyword to define global macro. 2011-11-25 08:24:15 +00:00
EmbeddedPkg EmbeddedPkg/FdtLib: Added patches to support libfdt in EDK2 2012-02-24 15:47:29 +00:00
EmulatorPkg Append double-null for Type 19 data record. 2012-02-03 07:48:57 +00:00
FatBinPkg New Fat binaries for EBC/IA32/IPF/X64 built from UDK2010.SR1 (core package@r12898, FatPkg@r67) 2012-01-31 08:38:02 +00:00
IntelFrameworkModulePkg Add Missing invocations to VA_END() for VA_START(). 2012-02-01 06:06:08 +00:00
IntelFrameworkPkg Add Missing invocations to VA_END() for VA_START(). 2012-02-01 06:06:08 +00:00
MdeModulePkg GraphicsConsole supports both UGA and GOP protocol, "UGA Console Driver" is changed to "Graphics Console Driver" in Component Name Protocol. 2012-02-24 02:10:28 +00:00
MdePkg MdePkg: Add a new macro VA_COPY for variable argument support. Fix a bug in the UefiLib instance that there is a non portable assumption that Marker is copied when passed to a function. 2012-02-22 02:39:57 +00:00
NetworkPkg 1. Fix a bug for PXEv6 when Proxy PXE server and DHCP server are located at the same server. 2012-02-07 05:31:11 +00:00
Nt32Pkg Enable write file to USB from Shell in Win7 OS 2012-02-15 02:40:18 +00:00
Omap35xxPkg BeagleBoard: Fix build 2011-12-05 14:31:48 +00:00
OptionRomPkg Refine file header format to follow coding style. 2011-12-16 05:46:57 +00:00
OvmfPkg Add Missing invocations to VA_END() for VA_START(). 2012-02-01 06:06:08 +00:00
PcAtChipsetPkg Update the Package version. 2011-12-13 08:33:18 +00:00
PerformancePkg Add Missing invocations to VA_END() for VA_START(). 2012-02-01 06:06:08 +00:00
SecurityPkg Add Missing invocations to VA_END() for VA_START(). 2012-02-01 06:06:08 +00:00
ShellBinPkg ShellBinPkg: Updated version number. 2011-12-13 18:44:49 +00:00
ShellPkg ShellPkg: Fix ICC11 build failure. 2012-02-24 17:12:39 +00:00
SourceLevelDebugPkg Generic solution to handle reset failure in some special platforms. 2012-02-07 01:58:30 +00:00
StdLib Fix issues detected by python web-server. 2012-02-24 18:45:09 +00:00
StdLibPrivateInternalFiles StdLib: Move the declarations for ffs() and bzero() from extern.h to strings.h. 2011-11-03 00:35:55 +00:00
UefiCpuPkg Update package version for MdeModulePkg, UefiCpuPkg. 2011-12-14 01:42:15 +00:00
UnixPkg Append double-null for Type 19 data record. 2012-02-03 07:48:57 +00:00
BuildNotes2.txt Update EDKII BuildNotes to say the default tool chain tag is VS2008 instead of VS2005 2011-12-14 06:15:48 +00:00
edksetup.bat Correct copyright year 2011-02-16 12:21:31 +00:00
edksetup.sh Correct copyright year 2011-02-16 12:21:31 +00:00