2010-10-31 22:50 UTC+0200 Petr Chornyj (myorg63 at mail.ru)

* harbour/src/rtl/hbinet.c
    ! HB_INETSERVER fixed to use parameters properly
      Syntax of HB_INETSERVER is
      hb_inetSrver( nPort, [pSocket | NIL], [cBindAddr], [nListenLimit] )
This commit is contained in:
Petr Chornyj
2010-10-31 20:53:09 +00:00
parent fb2096982a
commit 0353de304c
2 changed files with 8 additions and 2 deletions

View File

@@ -16,6 +16,12 @@
The license applies to all entries newer than 2009-04-28.
*/
2010-10-31 22:50 UTC+0200 Petr Chornyj (myorg63 at mail.ru)
* harbour/src/rtl/hbinet.c
! HB_INETSERVER fixed to use parameters properly
Syntax of HB_INETSERVER is
hb_inetSrver( nPort, [pSocket | NIL], [cBindAddr], [nListenLimit] )
2010-10-31 13:11 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/contrib/hbhpdf/harupdf.c
! fixed typo

View File

@@ -1124,8 +1124,8 @@ HB_FUNC( HB_INETSERVER )
else
{
int iPort = hb_parni( 1 );
const char * szAddress = hb_parc( 2 );
int iListen = hb_parnidef( 3, 10 );
const char * szAddress = hb_parc( 3 );
int iListen = hb_parnidef( 4, 10 );
if( socket->remote )
hb_xfree( socket->remote );