📄 osutil.cpp
字号:
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* Jabber
* Copyright (C) 2004 Xie Tian Lu http://sabber.jabberstudio.org/
*/
#include <e32std.h>
#include <in_sock.h>
#include "symsock.h"
#include "osutil.h"
void itoa( int val, char* str, int radix )
{
int l = 0;
if ( val == 0 ) {
str[ l++ ] = '0';
str[ l++ ] = 0;
return;
}
while( val ) {
str[ l++ ] = '0' + val % radix;
val /= radix;
}
str[ l ] = 0;
char *s, *e;
s = str;
e = str + l - 1;
while ( s < e ) {
char t = *s;
*s = *e;
*e = t;
s++;
e--;
}
}
void Sleep( int ms )
{
}
#ifdef __WINS__
void udp_socket_trace( const char* ip, short port, const unsigned char* data, int len )
{
}
#endif
int send( SOCKET s, const char* buf, int len, int flags )
{
CSymSocket* sock = ( CSymSocket* )s;
int slen = sock->Send( buf, len, flags );
return slen;
}
int recv( SOCKET s, char* buf, int len, int flags )
{
CSymSocket* sock = ( CSymSocket* )s;
int slen = sock->Recv( buf, len, flags );
return slen;
}
int closesocket( SOCKET s )
{
CSymSocket* sock = ( CSymSocket* )s;
sock->Close();
return 0;
}
int MakeNetSocket( short port, char* host, int type, Globaldata* g )
{
CSymSocket* sock = ( CSymSocket* )g->_symsock;
sock->SetServerPort( port );
TPtrC8 source( (TText8*)host );
TBuf16< 128 > aTbuf16;
aTbuf16.Copy( source );
sock->SetServerName( aTbuf16 );
if ( ELookUpFailed == sock->GetCurStatus() ) {
//SYS_TRACE1( 0, "Resolve server name error" );
return -1;
}
sock->ConnectL();
return ( int )sock;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -