Mercurial > pidgin.yaz
view src/win32/libc_interface.c @ 4617:858979ab3867
[gaim-migrate @ 4908]
Big Changes:
-Rewrote some of the perl stuff so perl scripts can change a few of their
parameters
-Receiving a file with AIM over oscar works pretty well
Now, the "nitty gritty":
Very minor change to prefs.c: In the plugins details tab, I changed "URL"
to "Web Site." I was just going to fix the tabbing, but silvestrij
suggested changing it to "Web site," and I thought that sounded good.
I think it fits better, too. I dunno, maybe that's just me.
"Get Capabilities" has stopped working for some reason. I'm just going to
blame AOL. It's really not important anyway, and some people wanted it
taken off. It is now #ifdef 0'ed out. I'll remove it completely if it
continues to no longer function.
I took out a few plugin_event calls from oscar.c and put them in core code.
"event_error" should be, uh, "evented" when there is an error signing on.
Hopefully no one was using this. It's really pretty useless. The parameter
is now the reason for not being able to connect rather than the archaic
toc error code.
I screwed around with how perl functions are called some. There was way the
hell too much malloc'ing going on here. I think all in all it's an
improvement, though I'm still not a big fan of how changes to parameters
propagate to the actual memory.
I really think it would be nice if the perl stuff was made into a C plugin.
It's just so much cleaner. Especially if someone wanted to write, say, a
python or tcl interpreter. That's how xchat2 does it. I just think that
would be really slick. Like butter. Or ice. Very unlike Velcro.
I added a "Change Password" Protocol Action for ICQ over oscar. This was
really pretty easy. I'd like to thank my housemate Andrew for complaining
a lot that having to use Windows ICQ to change his password was a pain.
I rewrote a lot of the oscar file transfer stuff to use Christian's new
xfer interface. This involved moving a few functions from ft.c to im.c,
where they belong. I also removed all the #if 0'ed getfile functions.
I'll be rewritting them soonish. Receiving a file should work perfectly,
aside from maybe a small memleak when stuff is canceled. Sending a file is
currently disabled. No ETA on when I'll have that working.
I renamed pretty much all of the functions in im.c so they have kind of a
scheme now. They should all be aim_im_bleh, since "im" is the family
name. There comes a time when you must break the crap out of any clients
that might be using libfaim in order to make stuff cleaner. Maybe.
I got rid of the snac destructor stuff for now. I'll probably add it back
later. I wasn't entirely comfortable with how it was done.
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Wed, 26 Feb 2003 05:01:37 +0000 |
parents | c297b9d4f67c |
children | 86037d6bf80f |
line wrap: on
line source
/* * libc_interface.c * * Author: Herman Bloggs <hermanator12002@yahoo.com> * Date: October 14, 2002 * Description: Commonly used libc routines. */ #include <winsock.h> #include <io.h> #include <stdlib.h> #include <stdio.h> #include <errno.h> #include <sys/timeb.h> #include <time.h> #include "libc_internal.h" /* * PROTOS */ extern void debug_printf(char * fmt, ...); /* * LOCALS */ static char errbuf[1024]; /* * CODE */ /* helpers */ static int wgaim_is_socket( int fd ) { int optval; unsigned int optlen = sizeof(int); if( (getsockopt(fd, SOL_SOCKET, SO_TYPE, (void*)&optval, &optlen)) == SOCKET_ERROR ) { int error = WSAGetLastError(); if( error == WSAENOTSOCK ) return FALSE; else { debug_printf("wgaim_read: getsockopt returned error: %d\n", error); return FALSE; } } return TRUE; } /* socket.h */ int wgaim_socket (int namespace, int style, int protocol) { int ret; ret = socket( namespace, style, protocol ); if( ret == INVALID_SOCKET ) { errno = WSAGetLastError(); return -1; } return ret; } int wgaim_connect(int socket, struct sockaddr *addr, u_long length) { int ret; ret = connect( socket, addr, length ); if( ret == SOCKET_ERROR ) { errno = WSAGetLastError(); if( errno == WSAEWOULDBLOCK ) errno = WSAEINPROGRESS; return -1; } return 0; } int wgaim_getsockopt(int socket, int level, int optname, void *optval, unsigned int *optlenptr) { int ret; ret = getsockopt( socket, level, optname, optval, optlenptr ); if( ret == SOCKET_ERROR ) { errno = WSAGetLastError(); return -1; } return 0; } /* fcntl.h */ /* This is not a full implementation of fcntl. Update as needed.. */ int wgaim_fcntl(int socket, int command, int val) { switch( command ) { case F_SETFL: { int ret=0; switch( val ) { case O_NONBLOCK: { u_long imode=1; ret = ioctlsocket(socket, FIONBIO, &imode); break; } case 0: { u_long imode=0; ret = ioctlsocket(socket, FIONBIO, &imode); break; } default: errno = EINVAL; return -1; }/*end switch*/ if( ret == SOCKET_ERROR ) { errno = WSAGetLastError(); return -1; } return 0; } default: debug_printf("wgaim_fcntl: Unsupported command\n"); return -1; }/*end switch*/ } /* sys/ioctl.h */ int wgaim_ioctl(int fd, int command, void* val) { switch( command ) { case FIONBIO: { if (ioctlsocket(fd, FIONBIO, (unsigned long *)val) == SOCKET_ERROR) { errno = WSAGetLastError(); return -1; } return 0; } default: errno = EINVAL; return -1; }/*end switch*/ } /* arpa/inet.h */ int wgaim_inet_aton(const char *name, struct in_addr *addr) { if((addr->s_addr = inet_addr(name)) == INADDR_NONE) return 0; else return 1; } /* netdb.h */ struct hostent* wgaim_gethostbyname(const char *name) { struct hostent *hp; if((hp = gethostbyname(name)) == NULL) { errno = WSAGetLastError(); return NULL; } return hp; } /* string.h */ char* wgaim_strerror( int errornum ) { if( errornum > WSABASEERR ) { sprintf( errbuf, "Windows socket error #%d", errornum ); return errbuf; } else return strerror( errornum ); } /* From glibc 2.2.5 */ char* wgaim_strsep(char **stringp, const char *delim) { char *begin, *end; begin = *stringp; if (begin == NULL) return NULL; /* A frequent case is when the delimiter string contains only one character. Here we don't need to call the expensive `strpbrk' function and instead work using `strchr'. */ if (delim[0] == '\0' || delim[1] == '\0') { char ch = delim[0]; if (ch == '\0') end = NULL; else { if (*begin == ch) end = begin; else if (*begin == '\0') end = NULL; else end = strchr (begin + 1, ch); } } else /* Find the end of the token. */ end = strpbrk (begin, delim); if (end) { /* Terminate the token and set *STRINGP past NUL character. */ *end++ = '\0'; *stringp = end; } else /* No more delimiters; this is the last token. */ *stringp = NULL; return begin; } /* unistd.h */ /* * We need to figure out whether fd is a file or socket handle. */ int wgaim_read(int fd, void *buf, unsigned int size) { int ret; if( wgaim_is_socket(fd) ) { if( (ret = recv(fd, buf, size, 0)) == SOCKET_ERROR ) { errno = WSAGetLastError(); return -1; } else if( ret == 0 ) { /* connection has been gracefully closed */ errno = WSAENOTCONN; return -1; } else { /* success reading socket */ return ret; } } else { /* fd is not a socket handle.. pass it off to read */ return read(fd, buf, size); } } int wgaim_write(int fd, const void *buf, unsigned int size) { int ret; if( wgaim_is_socket(fd) ) { if( (ret = send(fd, buf, size, 0)) == SOCKET_ERROR ) { errno = WSAGetLastError(); return -1; } else { /* success */ return ret; } } else return write(fd, buf, size); } int wgaim_close(int fd) { int ret; if( wgaim_is_socket(fd) ) { if( (ret = closesocket(fd)) == SOCKET_ERROR ) { errno = WSAGetLastError(); return -1; } else return 0; } else return close(fd); } /* sys/time.h */ int wgaim_gettimeofday(struct timeval *p, struct timezone *z) { int res = 0; struct _timeb timebuffer; if (z != 0) { _tzset(); z->tz_minuteswest = _timezone/60; z->tz_dsttime = _daylight; } if (p != 0) { _ftime(&timebuffer); p->tv_sec = timebuffer.time; /* seconds since 1-1-1970 */ p->tv_usec = timebuffer.millitm*1000; /* microseconds */ } return res; }