2009-11-01 19:01 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* src/rtl/hbsocket.c
! hb<Type> -> HB_<TYPE>.
This commit is contained in:
@@ -17,6 +17,10 @@
|
||||
past entries belonging to author(s): Viktor Szakats.
|
||||
*/
|
||||
|
||||
2009-11-01 19:01 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
|
||||
* src/rtl/hbsocket.c
|
||||
! hb<Type> -> HB_<TYPE>.
|
||||
|
||||
2009-11-01 17:08 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
|
||||
* include/hbdefs.h
|
||||
+ Added HB_BYTE as synonym to BYTE.
|
||||
|
||||
@@ -1574,7 +1574,7 @@ BOOL hb_socketInetAddr( void ** pSockAddr, unsigned * puiLen,
|
||||
|
||||
memset( &sa, 0, sizeof( sa ) );
|
||||
sa.sin_family = AF_INET;
|
||||
sa.sin_port = htons( ( hbU16 ) iPort );
|
||||
sa.sin_port = htons( ( HB_U16 ) iPort );
|
||||
if( !szAddr || !*szAddr )
|
||||
{
|
||||
sa.sin_addr.s_addr = htonl( INADDR_ANY );
|
||||
@@ -1619,7 +1619,7 @@ BOOL hb_socketInet6Addr( void ** pSockAddr, unsigned * puiLen,
|
||||
|
||||
memset( &sa, 0, sizeof( sa ) );
|
||||
sa.sin6_family = AF_INET6;
|
||||
sa.sin6_port = htons( ( hbU16 ) iPort );
|
||||
sa.sin6_port = htons( ( HB_U16 ) iPort );
|
||||
if( !szAddr || !*szAddr )
|
||||
{
|
||||
#if defined( HB_HAS_INET6_ADDR_CONST )
|
||||
@@ -2649,7 +2649,7 @@ BOOL hb_socketResolveInetAddr( void ** pSockAddr, unsigned * puiLen, const char
|
||||
|
||||
memset( &sa, 0, sizeof( sa ) );
|
||||
sa.sin_family = AF_INET;
|
||||
sa.sin_port = htons( ( hbU16 ) iPort );
|
||||
sa.sin_port = htons( ( HB_U16 ) iPort );
|
||||
if( !szAddr || !*szAddr )
|
||||
{
|
||||
sa.sin_addr.s_addr = htonl( INADDR_ANY );
|
||||
|
||||
Reference in New Issue
Block a user