audk/StdLib/EfiSocketLib
lpleahy fcb6f89d01 Fix read issue detected by the following Python program. The issue was that the caller's buffer pointer was not being advanced between segments of the read data.
Signed-off-by: lpleahy

-----  UnbufferedRead.py  -----

import httplib
conn = httplib.HTTPConnection("10.241.97.30")
conn.request('GET', '/')
resp = conn.getresponse(buffering=True)
if resp.status != 200:
   print "status:", resp.status
   print "aborting"
   sys.exit(1)
while True:
   chunk = resp.read()
   if not chunk:
       break
   print chunk


git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13077 6f19259b-4bc3-4df7-8a09-765794883524
2012-03-05 19:05:47 +00:00
..
DxeSupport.c Update the sockets library code 2011-09-30 23:02:35 +00:00
EfiSocketLib.inf Merged socket development branch: 2012-02-09 19:16:44 +00:00
Init.c Update the sockets library code 2011-09-30 23:02:35 +00:00
Ip4.c Fix issues detected by python web-server. 2012-02-24 18:45:09 +00:00
ReleaseNotes.txt Fix compilation errors detected with GCC 4.4 2011-09-30 23:52:45 +00:00
Service.c Update the sockets library code 2011-09-30 23:02:35 +00:00
Socket.c Fix issues detected by python web-server. 2012-02-24 18:45:09 +00:00
Socket.h Fix issues detected by python web-server. 2012-02-24 18:45:09 +00:00
Tcp4.c Fix read issue detected by the following Python program. The issue was that the caller's buffer pointer was not being advanced between segments of the read data. 2012-03-05 19:05:47 +00:00
Tcp6.c Fix read issue detected by the following Python program. The issue was that the caller's buffer pointer was not being advanced between segments of the read data. 2012-03-05 19:05:47 +00:00
Udp4.c Fix issues detected by python web-server. 2012-02-24 18:45:09 +00:00
Udp6.c Fix issues detected by python web-server. 2012-02-24 18:45:09 +00:00
UseEfiSocketLib.c Merged socket development branch: 2012-02-09 19:16:44 +00:00