Mercurial > pidgin
annotate src/protocols/zephyr/ZhmStat.c @ 10475:94fd0bf8c4b1
[gaim-migrate @ 11762]
sf patch #1094341, from Richard Laager
implements sf rfe #1090971
"tracks when a buddy was last seen and displays this value in the
tooltip for offline and "signing on" buddies."
The changes for this feature were pretty small and self-contained,
and it's a neat feature.
Then I started changing other things. I changed the way tooltips are
created to use GStrings. I think it's easier to make changes without
screwing stuff up, and the code is hopefully a bit easier to read through.
I also changed how Add a Chat and Join a Chat work slightly. Now
PRPLs can specify if a field is required or not, and the dialogs
will not allow the user to click on "ok" if the field is not filled
in. For example, when joining an oscar chat, the room name MUST be
specified.
This change and I think something else minor should fix the problem with
adding chats to the buddy list that didn't have names.
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Wed, 05 Jan 2005 05:52:10 +0000 |
parents | 43d6c08d7e96 |
children | 5727afad0fb8 |
rev | line source |
---|---|
2419 | 1 /* This file is part of the Project Athena Zephyr Notification System. |
2 * It contains the ZhmStat() function. | |
3 * | |
4 * Created by: Marc Horowitz | |
5 * | |
8792
43d6c08d7e96
[gaim-migrate @ 9554]
Christian Hammond <chipx86@chipx86.com>
parents:
2419
diff
changeset
|
6 * $Id: ZhmStat.c 9554 2004-04-24 09:02:28Z chipx86 $ |
2419 | 7 * |
8 * Copyright (c) 1996 by the Massachusetts Institute of Technology. | |
9 * For copying and distribution information, see the file | |
10 * "mit-copyright.h". | |
11 */ | |
12 | |
8792
43d6c08d7e96
[gaim-migrate @ 9554]
Christian Hammond <chipx86@chipx86.com>
parents:
2419
diff
changeset
|
13 #include "internal.h" |
2419 | 14 #include <sys/socket.h> |
15 | |
16 #ifndef INADDR_LOOPBACK | |
17 #define INADDR_LOOPBACK 0x7f000001 | |
18 #endif | |
19 | |
20 Code_t ZhmStat(hostaddr, notice) | |
21 struct in_addr *hostaddr; | |
22 ZNotice_t *notice; | |
23 { | |
24 struct servent *sp; | |
25 struct sockaddr_in sin; | |
26 ZNotice_t req; | |
27 Code_t code; | |
28 struct timeval tv; | |
29 fd_set readers; | |
30 | |
31 (void) memset((char *)&sin, 0, sizeof(struct sockaddr_in)); | |
32 | |
33 sp = getservbyname(HM_SVCNAME, "udp"); | |
34 | |
35 sin.sin_port = (sp) ? sp->s_port : HM_SVC_FALLBACK; | |
36 sin.sin_family = AF_INET; | |
37 | |
38 if (hostaddr) | |
39 sin.sin_addr = *hostaddr; | |
40 else | |
41 sin.sin_addr.s_addr = htonl(INADDR_LOOPBACK); | |
42 | |
43 (void) memset((char *)&req, 0, sizeof(req)); | |
44 req.z_kind = STAT; | |
45 req.z_port = 0; | |
46 req.z_class = HM_STAT_CLASS; | |
47 req.z_class_inst = HM_STAT_CLIENT; | |
48 req.z_opcode = HM_GIMMESTATS; | |
49 req.z_sender = ""; | |
50 req.z_recipient = ""; | |
51 req.z_default_format = ""; | |
52 req.z_message_len = 0; | |
53 | |
54 if ((code = ZSetDestAddr(&sin)) != ZERR_NONE) | |
55 return(code); | |
56 | |
57 if ((code = ZSendNotice(&req, ZNOAUTH)) != ZERR_NONE) | |
58 return(code); | |
59 | |
60 /* Wait up to ten seconds for a response. */ | |
61 FD_ZERO(&readers); | |
62 FD_SET(ZGetFD(), &readers); | |
63 tv.tv_sec = 10; | |
64 tv.tv_usec = 0; | |
65 code = select(ZGetFD() + 1, &readers, NULL, NULL, &tv); | |
66 if (code < 0 && errno != EINTR) | |
67 return(errno); | |
68 if (code == 0 || (code < 0 && errno == EINTR) || ZPending() == 0) | |
69 return(ZERR_HMDEAD); | |
70 | |
71 return(ZReceiveNotice(notice, (struct sockaddr_in *) 0)); | |
72 } |