Re: [edk2] TCP->Configure after TCP->Close

2014-02-17 Thread Fu, Siyuan
Hi, Brendan and Martin To help understand the problem, could you tell me how does you create or get the passive TCP instance upon the application start? And have you destroyed the passive instance before the application exit, or you just leave it in listen state? Thanks, Siyuan From: Thomas

Re: [edk2] TCP->Configure after TCP->Close

2014-02-17 Thread Thomas Rognon
I encountered the same issue. My workaround was to set the port to zero, which results in a random port being chosen every time (which would fail if the same port was randomly chosen, though the odds are very low). The port didn't matter in my application, but this would be unacceptable in many oth

Re: [edk2] [PATCH] BaseTools: accept 'amd64' as an alias for 'x86_64'

2014-02-17 Thread Laszlo Ersek
On 02/14/14 19:49, Ed Maste wrote: > On FreeBSD uname -a reports 'amd64' for the 64-bit x86 architecture. > > Contributed-under: TianoCore Contribution Agreement 1.0 > Signed-off-by: Ed Maste > --- > BaseTools/Source/C/GNUmakefile | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff

Re: [edk2] SF.net SVN: edk2:[15236] trunk/edk2/ArmPlatformPkg/Bds/BdsHelper.c

2014-02-17 Thread Ryan Harkin
On 12 February 2014 15:09, wrote: > Revision: 15236 > http://sourceforge.net/p/edk2/code/15236 > Author: oliviermartin > Date: 2014-02-12 15:09:58 + (Wed, 12 Feb 2014) > Log Message: > --- > ArmPlatformPkg/BdsLib: Let the user press enter when inputting booleans > > Co

[edk2] [PATCH] ArmPkg/Library/BdsLib: Fix Linux kernel load when 1st call to BdsLoadImage fails.

2014-02-17 Thread Kirkendall, Garrett
Dear ArmPkg maintainers, Please consider the attached patch that handles loading the Linux kernel when the first call to BdsLoadImage fails. Also, it makes sure that the PSCI disabled processor holding pen can be allocated when loading the kernel image. Garrett Kirkendall [Description: Descr

[edk2] TCP->Configure after TCP->Close

2014-02-17 Thread Brendan Jackman
Hi there, I'm developing a UEFI application that uses the EFI_TCP4_PROTOCOL. It Configures a TCP protocol interface in passive mode and calls Accept. When a connection is received, it opens the pre-configured protocol interface representing that connection (to make sure I'm clear: there are now