source: zephyr.c @ 4cf7b1b

release-1.10release-1.7release-1.8release-1.9
Last change on this file since 4cf7b1b was 2c5ee3e, checked in by Alejandro R. Sedeño <asedeno@mit.edu>, 14 years ago
Don't try to load default subs if zephyr has not been initialized yet. Signed-off-by: Alejandro R. Sedeño <asedeno@mit.edu>
  • Property mode set to 100644
File size: 36.5 KB
Line 
1#include <stdlib.h>
2#include <unistd.h>
3#include <sys/types.h>
4#include <sys/wait.h>
5#include <sys/stat.h>
6#include <string.h>
7#include "owl.h"
8
9#ifdef HAVE_LIBZEPHYR
10static GList *deferred_subs = NULL;
11
12typedef struct _owl_sub_list {                            /* noproto */
13  ZSubscription_t *subs;
14  int nsubs;
15} owl_sub_list;
16
17Code_t ZResetAuthentication(void);
18#endif
19
20#define HM_SVC_FALLBACK         htons((unsigned short) 2104)
21
22static char *owl_zephyr_dotfile(const char *name, const char *input)
23{
24  if (input != NULL)
25    return owl_strdup(input);
26  else
27    return owl_sprintf("%s/%s", owl_global_get_homedir(&g), name);
28}
29
30#ifdef HAVE_LIBZEPHYR
31void owl_zephyr_initialize(void)
32{
33  int ret;
34  struct servent *sp;
35  struct sockaddr_in sin;
36  ZNotice_t req;
37  Code_t code;
38
39  /*
40   * Code modified from libzephyr's ZhmStat.c
41   *
42   * Modified to add the fd to our select loop, rather than hanging
43   * until we get an ack.
44   */
45
46  if ((ret = ZOpenPort(NULL)) != ZERR_NONE) {
47    owl_function_error("Error opening Zephyr port: %s", error_message(ret));
48    return;
49  }
50
51  (void) memset(&sin, 0, sizeof(struct sockaddr_in));
52
53  sp = getservbyname(HM_SVCNAME, "udp");
54
55  sin.sin_port = (sp) ? sp->s_port : HM_SVC_FALLBACK;
56  sin.sin_family = AF_INET;
57
58  sin.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
59
60  (void) memset(&req, 0, sizeof(req));
61  req.z_kind = STAT;
62  req.z_port = 0;
63  req.z_class = zstr(HM_STAT_CLASS);
64  req.z_class_inst = zstr(HM_STAT_CLIENT);
65  req.z_opcode = zstr(HM_GIMMESTATS);
66  req.z_sender = zstr("");
67  req.z_recipient = zstr("");
68  req.z_default_format = zstr("");
69  req.z_message_len = 0;
70
71  if ((code = ZSetDestAddr(&sin)) != ZERR_NONE) {
72    owl_function_error("Initializing Zephyr: %s", error_message(code));
73    return;
74  }
75
76  if ((code = ZSendNotice(&req, ZNOAUTH)) != ZERR_NONE) {
77    owl_function_error("Initializing Zephyr: %s", error_message(code));
78    return;
79  }
80
81  owl_select_add_io_dispatch(ZGetFD(), OWL_IO_READ|OWL_IO_EXCEPT, &owl_zephyr_finish_initialization, NULL, NULL);
82}
83
84void owl_zephyr_finish_initialization(const owl_io_dispatch *d, void *data) {
85  Code_t code;
86  char *perl;
87
88  owl_select_remove_io_dispatch(d);
89
90  ZClosePort();
91
92  if ((code = ZInitialize()) != ZERR_NONE) {
93    owl_function_error("Initializing Zephyr: %s", error_message(code));
94    return;
95  }
96
97  if ((code = ZOpenPort(NULL)) != ZERR_NONE) {
98    owl_function_error("Initializing Zephyr: %s", error_message(code));
99    return;
100  }
101
102  owl_select_add_io_dispatch(ZGetFD(), OWL_IO_READ|OWL_IO_EXCEPT, &owl_zephyr_process_events, NULL, NULL);
103
104  owl_global_set_havezephyr(&g);
105
106  if(g.load_initial_subs) {
107    owl_zephyr_load_initial_subs();
108  }
109  while(deferred_subs != NULL) {
110    owl_sub_list *subs = deferred_subs->data;
111    owl_function_debugmsg("Loading %d deferred subs.", subs->nsubs);
112    owl_zephyr_loadsubs_helper(subs->subs, subs->nsubs);
113    deferred_subs = g_list_delete_link(deferred_subs, deferred_subs);
114    owl_free(subs);
115  }
116
117  /* zlog in if we need to */
118  if (owl_global_is_startuplogin(&g)) {
119    owl_function_debugmsg("startup: doing zlog in");
120    owl_zephyr_zlog_in();
121  }
122  /* check pseudo-logins if we need to */
123  if (owl_global_is_pseudologins(&g)) {
124    owl_function_debugmsg("startup: checking pseudo-logins");
125    owl_function_zephyr_buddy_check(0);
126  }
127
128  perl = owl_perlconfig_execute("BarnOwl::Zephyr::_zephyr_startup()");
129  owl_free(perl);
130
131  owl_select_add_pre_select_action(owl_zephyr_pre_select_action, NULL, NULL);
132}
133
134void owl_zephyr_load_initial_subs(void) {
135  int ret_sd, ret_bd, ret_u;
136
137  owl_function_debugmsg("startup: loading initial zephyr subs");
138
139  /* load default subscriptions */
140  ret_sd = owl_zephyr_loaddefaultsubs();
141
142  /* load Barnowl default subscriptions */
143  ret_bd = owl_zephyr_loadbarnowldefaultsubs();
144
145  /* load subscriptions from subs file */
146  ret_u = owl_zephyr_loadsubs(NULL, 0);
147
148  if (ret_sd || ret_bd || ret_u) {
149    owl_function_error("Error loading zephyr subscriptions");
150  }
151
152  /* load login subscriptions */
153  if (owl_global_is_loginsubs(&g)) {
154    owl_function_debugmsg("startup: loading login subs");
155    owl_function_loadloginsubs(NULL);
156  }
157}
158#else
159void owl_zephyr_initialize(void)
160{
161}
162#endif
163
164
165int owl_zephyr_shutdown(void)
166{
167#ifdef HAVE_LIBZEPHYR
168  if(owl_global_is_havezephyr(&g)) {
169    unsuball();
170    ZClosePort();
171  }
172#endif
173  return 0;
174}
175
176int owl_zephyr_zpending(void)
177{
178#ifdef HAVE_LIBZEPHYR
179  Code_t code;
180  if(owl_global_is_havezephyr(&g)) {
181    if((code = ZPending()) < 0) {
182      owl_function_debugmsg("Error (%s) in ZPending()\n",
183                            error_message(code));
184      return 0;
185    }
186    return code;
187  }
188#endif
189  return 0;
190}
191
192const char *owl_zephyr_get_realm(void)
193{
194#ifdef HAVE_LIBZEPHYR
195  if (owl_global_is_havezephyr(&g))
196    return(ZGetRealm());
197#endif
198  return "";
199}
200
201const char *owl_zephyr_get_sender(void)
202{
203#ifdef HAVE_LIBZEPHYR
204  if (owl_global_is_havezephyr(&g))
205    return(ZGetSender());
206#endif
207  return "";
208}
209
210#ifdef HAVE_LIBZEPHYR
211int owl_zephyr_loadsubs_helper(ZSubscription_t subs[], int count)
212{
213  int ret = 0;
214  if (owl_global_is_havezephyr(&g)) {
215    int i;
216    /* sub without defaults */
217    if (ZSubscribeToSansDefaults(subs,count,0) != ZERR_NONE) {
218      owl_function_error("Error subscribing to zephyr notifications.");
219      ret=-2;
220    }
221
222    /* free stuff */
223    for (i=0; i<count; i++) {
224      owl_free(subs[i].zsub_class);
225      owl_free(subs[i].zsub_classinst);
226      owl_free(subs[i].zsub_recipient);
227    }
228
229    owl_free(subs);
230  } else {
231    owl_sub_list *s = owl_malloc(sizeof(owl_sub_list));
232    s->subs = subs;
233    s->nsubs = count;
234    deferred_subs = g_list_append(deferred_subs, s);
235  }
236
237  return ret;
238}
239#endif
240
241/* Load zephyr subscriptions from 'filename'.  If 'filename' is NULL,
242 * the default file $HOME/.zephyr.subs will be used.
243 *
244 * Returns 0 on success.  If the file does not exist, return -1 if
245 * 'error_on_nofile' is 1, otherwise return 0.  Return -1 if the file
246 * exists but can not be read.  Return -2 if there is a failure from
247 * zephyr to load the subscriptions.
248 */
249int owl_zephyr_loadsubs(const char *filename, int error_on_nofile)
250{
251#ifdef HAVE_LIBZEPHYR
252  FILE *file;
253  char *tmp, *start;
254  char *buffer = NULL;
255  char *subsfile;
256  ZSubscription_t *subs;
257  int subSize = 1024;
258  int count;
259  struct stat statbuff;
260
261  subs = owl_malloc(sizeof(ZSubscription_t) * subSize);
262  subsfile = owl_zephyr_dotfile(".zephyr.subs", filename);
263
264  if (stat(subsfile, &statbuff) != 0) {
265    owl_free(subsfile);
266    if (error_on_nofile == 1)
267      return -1;
268    return 0;
269  }
270
271  ZResetAuthentication();
272  count = 0;
273  file = fopen(subsfile, "r");
274  owl_free(subsfile);
275  if (!file)
276    return -1;
277  while (owl_getline(&buffer, file)) {
278    if (buffer[0] == '#' || buffer[0] == '\n')
279        continue;
280
281    if (buffer[0] == '-')
282      start = buffer + 1;
283    else
284      start = buffer;
285
286    if (count >= subSize) {
287      subSize *= 2;
288      subs = owl_realloc(subs, sizeof(ZSubscription_t) * subSize);
289    }
290   
291    /* add it to the list of subs */
292    if ((tmp = strtok(start, ",\n\r")) == NULL)
293      continue;
294    subs[count].zsub_class = owl_strdup(tmp);
295    if ((tmp=strtok(NULL, ",\n\r")) == NULL)
296      continue;
297    subs[count].zsub_classinst = owl_strdup(tmp);
298    if ((tmp = strtok(NULL, " \t\n\r")) == NULL)
299      continue;
300    subs[count].zsub_recipient = owl_strdup(tmp);
301
302    /* if it started with '-' then add it to the global punt list, and
303     * remove it from the list of subs. */
304    if (buffer[0] == '-') {
305      owl_function_zpunt(subs[count].zsub_class, subs[count].zsub_classinst, subs[count].zsub_recipient, 0);
306      owl_free(subs[count].zsub_class);
307      owl_free(subs[count].zsub_classinst);
308      owl_free(subs[count].zsub_recipient);
309    } else {
310      count++;
311    }
312  }
313  fclose(file);
314  if (buffer)
315    owl_free(buffer);
316
317  return owl_zephyr_loadsubs_helper(subs, count);
318#else
319  return 0;
320#endif
321}
322
323/* Load default Barnowl subscriptions
324 *
325 * Returns 0 on success.
326 * Return -2 if there is a failure from zephyr to load the subscriptions.
327 */
328int owl_zephyr_loadbarnowldefaultsubs(void)
329{
330#ifdef HAVE_LIBZEPHYR
331  ZSubscription_t *subs;
332  int subSize = 10; /* Max Barnowl default subs we allow */
333  int count, ret;
334
335  subs = owl_malloc(sizeof(ZSubscription_t) * subSize);
336  ret = 0;
337  ZResetAuthentication();
338  count=0;
339
340  subs[count].zsub_class=owl_strdup("message");
341  subs[count].zsub_classinst=owl_strdup("*");
342  subs[count].zsub_recipient=owl_strdup("%me%");
343  count++;
344
345  ret = owl_zephyr_loadsubs_helper(subs, count);
346  return(ret);
347#else
348  return(0);
349#endif
350}
351
352int owl_zephyr_loaddefaultsubs(void)
353{
354#ifdef HAVE_LIBZEPHYR
355  if (owl_global_is_havezephyr(&g)) {
356    ZSubscription_t subs[10];
357   
358    if (ZSubscribeTo(subs,0,0) != ZERR_NONE) {
359      owl_function_error("Error subscribing to default zephyr notifications.");
360      return(-1);
361    }
362  }
363  return(0);
364#else
365  return(0);
366#endif
367}
368
369int owl_zephyr_loadloginsubs(const char *filename)
370{
371#ifdef HAVE_LIBZEPHYR
372  FILE *file;
373  ZSubscription_t *subs;
374  int numSubs = 100;
375  char *subsfile;
376  char *buffer = NULL;
377  int count;
378  struct stat statbuff;
379
380  subs = owl_malloc(numSubs * sizeof(ZSubscription_t));
381  subsfile = owl_zephyr_dotfile(".anyone", filename);
382
383  if (stat(subsfile, &statbuff) == -1) {
384    owl_free(subsfile);
385    return 0;
386  }
387
388  ZResetAuthentication();
389  count = 0;
390  file = fopen(subsfile, "r");
391  owl_free(subsfile);
392  if (file) {
393    while (owl_getline_chomp(&buffer, file)) {
394      if (buffer[0] == '\0' || buffer[0] == '#')
395        continue;
396
397      if (count == numSubs) {
398        numSubs *= 2;
399        subs = owl_realloc(subs, numSubs * sizeof(ZSubscription_t));
400      }
401
402      subs[count].zsub_class = owl_strdup("login");
403      subs[count].zsub_recipient = owl_strdup("*");
404      subs[count].zsub_classinst = long_zuser(buffer);
405
406      count++;
407    }
408    fclose(file);
409  } else {
410    return 0;
411  }
412  if (buffer)
413    owl_free(buffer);
414
415  return owl_zephyr_loadsubs_helper(subs, count);
416#else
417  return 0;
418#endif
419}
420
421void unsuball(void)
422{
423#if HAVE_LIBZEPHYR
424  int ret;
425
426  ZResetAuthentication();
427  ret=ZCancelSubscriptions(0);
428  if (ret != ZERR_NONE) {
429    com_err("owl",ret,"while unsubscribing");
430  }
431#endif
432}
433
434int owl_zephyr_sub(const char *class, const char *inst, const char *recip)
435{
436#ifdef HAVE_LIBZEPHYR
437  ZSubscription_t subs[5];
438
439  subs[0].zsub_class=zstr(class);
440  subs[0].zsub_classinst=zstr(inst);
441  subs[0].zsub_recipient=zstr(recip);
442
443  ZResetAuthentication();
444  if (ZSubscribeTo(subs,1,0) != ZERR_NONE) {
445    owl_function_error("Error subbing to <%s,%s,%s>", class, inst, recip);
446    return(-2);
447  }
448  return(0);
449#else
450  return(0);
451#endif
452}
453
454
455int owl_zephyr_unsub(const char *class, const char *inst, const char *recip)
456{
457#ifdef HAVE_LIBZEPHYR
458  ZSubscription_t subs[5];
459
460  subs[0].zsub_class=zstr(class);
461  subs[0].zsub_classinst=zstr(inst);
462  subs[0].zsub_recipient=zstr(recip);
463
464  ZResetAuthentication();
465  if (ZUnsubscribeTo(subs,1,0) != ZERR_NONE) {
466    owl_function_error("Error unsubbing from <%s,%s,%s>", class, inst, recip);
467    return(-2);
468  }
469  return(0);
470#else
471  return(0);
472#endif
473}
474
475/* return a pointer to the data in the Jth field, (NULL terminated by
476 * definition).  Caller must free the return.
477 */
478#ifdef HAVE_LIBZEPHYR
479char *owl_zephyr_get_field(const ZNotice_t *n, int j)
480{
481  int i, count, save;
482  char *out;
483
484  /* If there's no message here, just run along now */
485  if (n->z_message_len == 0)
486    return(owl_strdup(""));
487
488  count=save=0;
489  for (i=0; i<n->z_message_len; i++) {
490    if (n->z_message[i]=='\0') {
491      count++;
492      if (count==j) {
493        /* just found the end of the field we're looking for */
494        return(owl_strdup(n->z_message+save));
495      } else {
496        save=i+1;
497      }
498    }
499  }
500  /* catch the last field, which might not be null terminated */
501  if (count==j-1) {
502    out=owl_malloc(n->z_message_len-save+5);
503    memcpy(out, n->z_message+save, n->z_message_len-save);
504    out[n->z_message_len-save]='\0';
505    return(out);
506  }
507
508  return(owl_strdup(""));
509}
510
511char *owl_zephyr_get_field_as_utf8(const ZNotice_t *n, int j)
512{
513  int i, count, save;
514
515  /* If there's no message here, just run along now */
516  if (n->z_message_len == 0)
517    return(owl_strdup(""));
518
519  count=save=0;
520  for (i = 0; i < n->z_message_len; i++) {
521    if (n->z_message[i]=='\0') {
522      count++;
523      if (count == j) {
524        /* just found the end of the field we're looking for */
525        return(owl_validate_or_convert(n->z_message + save));
526      } else {
527        save = i + 1;
528      }
529    }
530  }
531  /* catch the last field, which might not be null terminated */
532  if (count == j - 1) {
533    char *tmp, *out;
534    tmp = owl_malloc(n->z_message_len-save+5);
535    memcpy(tmp, n->z_message+save, n->z_message_len-save);
536    tmp[n->z_message_len-save]='\0';
537    out = owl_validate_or_convert(tmp);
538    owl_free(tmp);
539    return out;
540  }
541
542  return(owl_strdup(""));
543}
544#else
545char *owl_zephyr_get_field(void *n, int j)
546{
547  return(owl_strdup(""));
548}
549char *owl_zephyr_get_field_as_utf8(void *n, int j)
550{
551  return owl_zephyr_get_field(n, j);
552}
553#endif
554
555
556#ifdef HAVE_LIBZEPHYR
557int owl_zephyr_get_num_fields(const ZNotice_t *n)
558{
559  int i, fields;
560
561  if(n->z_message_len == 0)
562    return 0;
563
564  fields=1;
565  for (i=0; i<n->z_message_len; i++) {
566    if (n->z_message[i]=='\0') fields++;
567  }
568 
569  return(fields);
570}
571#else
572int owl_zephyr_get_num_fields(const void *n)
573{
574  return(0);
575}
576#endif
577
578#ifdef HAVE_LIBZEPHYR
579/* return a pointer to the message, place the message length in k
580 * caller must free the return
581 */
582char *owl_zephyr_get_message(const ZNotice_t *n, const owl_message *m)
583{
584  /* don't let ping messages have a body */
585  if (!strcasecmp(n->z_opcode, "ping")) {
586    return(owl_strdup(""));
587  }
588
589  /* deal with MIT NOC messages */
590  if (!strcasecmp(n->z_default_format, "@center(@bold(NOC Message))\n\n@bold(Sender:) $1 <$sender>\n@bold(Time:  ) $time\n\n@italic($opcode service on $instance $3.) $4\n")) {
591    char *msg, *field3, *field4;
592
593    field3 = owl_zephyr_get_field(n, 3);
594    field4 = owl_zephyr_get_field(n, 4);
595
596    msg = owl_sprintf("%s service on %s %s\n%s", n->z_opcode, n->z_class_inst, field3, field4);
597    owl_free(field3);
598    owl_free(field4);
599    if (msg) {
600      return msg;
601    }
602  }
603  /* deal with MIT Discuss messages */
604  else if (!strcasecmp(n->z_default_format, "New transaction [$1] entered in $2\nFrom: $3 ($5)\nSubject: $4") ||
605           !strcasecmp(n->z_default_format, "New transaction [$1] entered in $2\nFrom: $3\nSubject: $4")) {
606    char *msg, *field1, *field2, *field3, *field4, *field5;
607   
608    field1 = owl_zephyr_get_field(n, 1);
609    field2 = owl_zephyr_get_field(n, 2);
610    field3 = owl_zephyr_get_field(n, 3);
611    field4 = owl_zephyr_get_field(n, 4);
612    field5 = owl_zephyr_get_field(n, 5);
613   
614    msg = owl_sprintf("New transaction [%s] entered in %s\nFrom: %s (%s)\nSubject: %s", field1, field2, field3, field5, field4);
615    owl_free(field1);
616    owl_free(field2);
617    owl_free(field3);
618    owl_free(field4);
619    owl_free(field5);
620    if (msg) {
621      return msg;
622    }
623  }
624  /* deal with MIT Moira messages */
625  else if (!strcasecmp(n->z_default_format, "MOIRA $instance on $fromhost:\n $message\n")) {
626    char *msg, *field1;
627   
628    field1 = owl_zephyr_get_field(n, 1);
629   
630    msg = owl_sprintf("MOIRA %s on %s: %s", n->z_class_inst, owl_message_get_hostname(m), field1);
631    owl_free(field1);
632    if (msg) {
633      return msg;
634    }
635  }
636
637  if (owl_zephyr_get_num_fields(n) == 1) {
638    return(owl_zephyr_get_field(n, 1));
639  }
640  else {
641    return(owl_zephyr_get_field(n, 2));
642  }
643}
644#endif
645
646#ifdef HAVE_LIBZEPHYR
647const char *owl_zephyr_get_zsig(const ZNotice_t *n, int *k)
648{
649  /* return a pointer to the zsig if there is one */
650
651  /* message length 0? No zsig */
652  if (n->z_message_len==0) {
653    *k=0;
654    return("");
655  }
656
657  /* If there's only one field, no zsig */
658  if (owl_zephyr_get_num_fields(n) == 1) {
659    *k=0;
660    return("");
661  }
662
663  /* Everything else is field 1 */
664  *k=strlen(n->z_message);
665  return(n->z_message);
666}
667#else
668const char *owl_zephyr_get_zsig(const void *n, int *k)
669{
670  return("");
671}
672#endif
673
674int send_zephyr(const char *opcode, const char *zsig, const char *class, const char *instance, const char *recipient, const char *message)
675{
676#ifdef HAVE_LIBZEPHYR
677  int ret;
678  ZNotice_t notice;
679   
680  memset(&notice, 0, sizeof(notice));
681
682  ZResetAuthentication();
683
684  if (!zsig) zsig="";
685 
686  notice.z_kind=ACKED;
687  notice.z_port=0;
688  notice.z_class=zstr(class);
689  notice.z_class_inst=zstr(instance);
690  notice.z_sender=NULL;
691  if (!strcmp(recipient, "*") || !strcmp(recipient, "@")) {
692    notice.z_recipient=zstr("");
693    if (*owl_global_get_zsender(&g))
694        notice.z_sender=zstr(owl_global_get_zsender(&g));
695  } else {
696    notice.z_recipient=zstr(recipient);
697  }
698  notice.z_default_format=zstr("Class $class, Instance $instance:\nTo: @bold($recipient) at $time $date\nFrom: @bold{$1 <$sender>}\n\n$2");
699  if (opcode) notice.z_opcode=zstr(opcode);
700
701  notice.z_message_len=strlen(zsig)+1+strlen(message);
702  notice.z_message=owl_malloc(notice.z_message_len+10);
703  strcpy(notice.z_message, zsig);
704  memcpy(notice.z_message+strlen(zsig)+1, message, strlen(message));
705
706  /* ret=ZSendNotice(&notice, ZAUTH); */
707  ret=ZSrvSendNotice(&notice, ZAUTH, send_zephyr_helper);
708 
709  /* free then check the return */
710  owl_free(notice.z_message);
711  ZFreeNotice(&notice);
712  if (ret!=ZERR_NONE) {
713    owl_function_error("Error sending zephyr");
714    return(ret);
715  }
716  return(0);
717#else
718  return(0);
719#endif
720}
721
722#ifdef HAVE_LIBZEPHYR
723Code_t send_zephyr_helper(ZNotice_t *notice, char *buf, int len, int wait)
724{
725  return(ZSendPacket(buf, len, 0));
726}
727#endif
728
729void send_ping(const char *to, const char *zclass, const char *zinstance)
730{
731#ifdef HAVE_LIBZEPHYR
732  send_zephyr("PING", "", zclass, zinstance, to, "");
733#endif
734}
735
736#ifdef HAVE_LIBZEPHYR
737void owl_zephyr_handle_ack(const ZNotice_t *retnotice)
738{
739  char *tmp;
740 
741  /* if it's an HMACK ignore it */
742  if (retnotice->z_kind == HMACK) return;
743
744  if (retnotice->z_kind == SERVNAK) {
745    owl_function_error("Authorization failure sending zephyr");
746  } else if ((retnotice->z_kind != SERVACK) || !retnotice->z_message_len) {
747    owl_function_error("Detected server failure while receiving acknowledgement");
748  } else if (!strcmp(retnotice->z_message, ZSRVACK_SENT)) {
749    if (!strcasecmp(retnotice->z_opcode, "ping")) {
750      return;
751    } else {
752      if (strcasecmp(retnotice->z_recipient, ""))
753      { /* personal */
754        tmp=short_zuser(retnotice->z_recipient);
755        if(!strcasecmp(retnotice->z_class, "message") &&
756           !strcasecmp(retnotice->z_class_inst, "personal")) {
757          owl_function_makemsg("Message sent to %s.", tmp);
758        } else if(!strcasecmp(retnotice->z_class, "message")) { /* instanced, but not classed, personal */
759          owl_function_makemsg("Message sent to %s on -i %s\n", tmp, retnotice->z_class_inst);
760        } else { /* classed personal */
761          owl_function_makemsg("Message sent to %s on -c %s -i %s\n", tmp, retnotice->z_class, retnotice->z_class_inst);
762        }
763        owl_free(tmp);
764      } else {
765        /* class / instance message */
766          owl_function_makemsg("Message sent to -c %s -i %s\n", retnotice->z_class, retnotice->z_class_inst);
767      }
768    }
769  } else if (!strcmp(retnotice->z_message, ZSRVACK_NOTSENT)) {
770    #define BUFFLEN 1024
771    if (retnotice->z_recipient == NULL
772        || *retnotice->z_recipient == 0
773        || *retnotice->z_recipient == '@') {
774      char buff[BUFFLEN];
775      owl_function_error("No one subscribed to class %s", retnotice->z_class);
776      snprintf(buff, BUFFLEN, "Could not send message to class %s: no one subscribed.\n", retnotice->z_class);
777      owl_function_adminmsg("", buff);
778    } else {
779      char buff[BUFFLEN];
780      owl_zwrite zw;
781      char *realm;
782
783      tmp = short_zuser(retnotice->z_recipient);
784      owl_function_error("%s: Not logged in or subscribing.", tmp);
785      /*
786       * These error messages are often over 80 chars, but users who want to
787       * see the whole thing can scroll to the side, and for those with wide
788       * terminals or who don't care, not splitting saves a line in the UI
789       */
790      if(strcasecmp(retnotice->z_class, "message")) {
791        snprintf(buff, BUFFLEN,
792                 "Could not send message to %s: "
793                 "not logged in or subscribing to class %s, instance %s.\n",
794                 tmp,
795                 retnotice->z_class,
796                 retnotice->z_class_inst);
797      } else if(strcasecmp(retnotice->z_class_inst, "personal")) {
798        snprintf(buff, BUFFLEN,
799                 "Could not send message to %s: "
800                 "not logged in or subscribing to instance %s.\n",
801                 tmp,
802                 retnotice->z_class_inst);
803      } else {
804        snprintf(buff, BUFFLEN,
805                 "Could not send message to %s: "
806                 "not logged in or subscribing to messages.\n",
807                 tmp);
808      }
809      owl_function_adminmsg("", buff);
810
811      memset(&zw, 0, sizeof(zw));
812      zw.class = owl_strdup(retnotice->z_class);
813      zw.inst  = owl_strdup(retnotice->z_class_inst);
814      realm = strchr(retnotice->z_recipient, '@');
815      if(realm) {
816        zw.realm = owl_strdup(realm + 1);
817      } else {
818        zw.realm = owl_strdup(owl_zephyr_get_realm());
819      }
820      zw.opcode = owl_strdup(retnotice->z_opcode);
821      zw.zsig   = owl_strdup("");
822      owl_list_create(&(zw.recips));
823      owl_list_append_element(&(zw.recips), owl_strdup(tmp));
824
825      owl_log_outgoing_zephyr_error(&zw, buff);
826
827      owl_zwrite_cleanup(&zw);
828      owl_free(tmp);
829    }
830  } else {
831    owl_function_error("Internal error on ack (%s)", retnotice->z_message);
832  }
833}
834#else
835void owl_zephyr_handle_ack(const void *retnotice)
836{
837}
838#endif
839
840#ifdef HAVE_LIBZEPHYR
841int owl_zephyr_notice_is_ack(const ZNotice_t *n)
842{
843  if (n->z_kind == SERVNAK || n->z_kind == SERVACK || n->z_kind == HMACK) {
844    if (!strcasecmp(n->z_class, LOGIN_CLASS)) return(0);
845    return(1);
846  }
847  return(0);
848}
849#else
850int owl_zephyr_notice_is_ack(const void *n)
851{
852  return(0);
853}
854#endif
855 
856void owl_zephyr_zaway(const owl_message *m)
857{
858#ifdef HAVE_LIBZEPHYR
859  char *tmpbuff, *myuser, *to;
860  owl_message *mout;
861  owl_zwrite *z;
862 
863  /* bail if it doesn't look like a message we should reply to.  Some
864   * of this defined by the way zaway(1) works
865   */
866  if (strcasecmp(owl_message_get_class(m), "message")) return;
867  if (strcasecmp(owl_message_get_recipient(m), ZGetSender())) return;
868  if (!strcasecmp(owl_message_get_sender(m), "")) return;
869  if (!strcasecmp(owl_message_get_opcode(m), "ping")) return;
870  if (!strcasecmp(owl_message_get_opcode(m), "auto")) return;
871  if (!strcasecmp(owl_message_get_zsig(m), "Automated reply:")) return;
872  if (!strcasecmp(owl_message_get_sender(m), ZGetSender())) return;
873  if (owl_message_get_attribute_value(m, "isauto")) return;
874
875  if (owl_global_is_smartstrip(&g)) {
876    to=owl_zephyr_smartstripped_user(owl_message_get_sender(m));
877  } else {
878    to=owl_strdup(owl_message_get_sender(m));
879  }
880
881  send_zephyr("",
882              "Automated reply:",
883              owl_message_get_class(m),
884              owl_message_get_instance(m),
885              to,
886              owl_global_get_zaway_msg(&g));
887
888  myuser=short_zuser(to);
889  if (!strcasecmp(owl_message_get_instance(m), "personal")) {
890    tmpbuff = owl_sprintf("zwrite %s", myuser);
891  } else {
892    tmpbuff = owl_sprintf("zwrite -i %s %s", owl_message_get_instance(m), myuser);
893  }
894  owl_free(myuser);
895  owl_free(to);
896
897  z = owl_zwrite_new(tmpbuff);
898  owl_zwrite_set_message(z, owl_global_get_zaway_msg(&g));
899  owl_zwrite_set_zsig(z, "Automated reply:");
900
901  /* display the message as an admin message in the receive window */
902  mout=owl_function_make_outgoing_zephyr(z);
903  owl_global_messagequeue_addmsg(&g, mout);
904  owl_free(tmpbuff);
905  owl_zwrite_delete(z);
906#endif
907}
908
909#ifdef HAVE_LIBZEPHYR
910void owl_zephyr_hackaway_cr(ZNotice_t *n)
911{
912  /* replace \r's with ' '.  Gross-ish */
913  int i;
914
915  for (i=0; i<n->z_message_len; i++) {
916    if (n->z_message[i]=='\r') {
917      n->z_message[i]=' ';
918    }
919  }
920}
921#endif
922
923char *owl_zephyr_zlocate(const char *user, int auth)
924{
925#ifdef HAVE_LIBZEPHYR
926  int ret, numlocs;
927  int one = 1;
928  ZLocations_t locations;
929  char *myuser;
930  char *p, *result;
931
932  ZResetAuthentication();
933  ret = ZLocateUser(zstr(user), &numlocs, auth ? ZAUTH : ZNOAUTH);
934  if (ret != ZERR_NONE)
935    return owl_sprintf("Error locating user %s: %s\n",
936                       user, error_message(ret));
937
938  myuser = short_zuser(user);
939  if (numlocs == 0) {
940    result = owl_sprintf("%s: Hidden or not logged in\n", myuser);
941  } else {
942    result = owl_strdup("");
943    for (; numlocs; numlocs--) {
944      ZGetLocations(&locations, &one);
945      p = owl_sprintf("%s%s: %s\t%s\t%s\n",
946                          result, myuser,
947                          locations.host ? locations.host : "?",
948                          locations.tty ? locations.tty : "?",
949                          locations.time ? locations.time : "?");
950      owl_free(result);
951      result = p;
952    }
953  }
954
955  return result;
956#else
957  return owl_strdup("");
958#endif
959}
960
961void owl_zephyr_addsub(const char *filename, const char *class, const char *inst, const char *recip)
962{
963#ifdef HAVE_LIBZEPHYR
964  char *line, *subsfile, *s = NULL;
965  FILE *file;
966  int duplicate = 0;
967
968  line = owl_zephyr_makesubline(class, inst, recip);
969  subsfile = owl_zephyr_dotfile(".zephyr.subs", filename);
970
971  /* if the file already exists, check to see if the sub is already there */
972  file = fopen(subsfile, "r");
973  if (file) {
974    while (owl_getline(&s, file)) {
975      if (strcasecmp(s, line) == 0) {
976        owl_function_error("Subscription already present in %s", subsfile);
977        duplicate++;
978      }
979    }
980    fclose(file);
981    owl_free(s);
982  }
983
984  if (!duplicate) {
985    file = fopen(subsfile, "a");
986    if (file) {
987      fputs(line, file);
988      fclose(file);
989      owl_function_makemsg("Subscription added");
990    } else {
991      owl_function_error("Error opening file %s for writing", subsfile);
992    }
993  }
994
995  owl_free(line);
996#endif
997}
998
999void owl_zephyr_delsub(const char *filename, const char *class, const char *inst, const char *recip)
1000{
1001#ifdef HAVE_LIBZEPHYR
1002  char *line, *subsfile;
1003  int linesdeleted;
1004 
1005  line=owl_zephyr_makesubline(class, inst, recip);
1006  line[strlen(line)-1]='\0';
1007
1008  subsfile = owl_zephyr_dotfile(".zephyr.subs", filename);
1009 
1010  linesdeleted = owl_util_file_deleteline(subsfile, line, 1);
1011  if (linesdeleted > 0) {
1012    owl_function_makemsg("Subscription removed");
1013  } else {
1014    owl_function_error("No subscription present in %s", subsfile);
1015  }
1016  owl_free(subsfile);
1017  owl_free(line);
1018#endif
1019}
1020
1021/* caller must free the return */
1022char *owl_zephyr_makesubline(const char *class, const char *inst, const char *recip)
1023{
1024  return owl_sprintf("%s,%s,%s\n", class, inst, !strcmp(recip, "") ? "*" : recip);
1025}
1026
1027
1028void owl_zephyr_zlog_in(void)
1029{
1030#ifdef HAVE_LIBZEPHYR
1031  const char *exposure, *eset;
1032  int ret;
1033
1034  ZResetAuthentication();
1035   
1036  eset=EXPOSE_REALMVIS;
1037  exposure=ZGetVariable(zstr("exposure"));
1038  if (exposure==NULL) {
1039    eset=EXPOSE_REALMVIS;
1040  } else if (!strcasecmp(exposure,EXPOSE_NONE)) {
1041    eset = EXPOSE_NONE;
1042  } else if (!strcasecmp(exposure,EXPOSE_OPSTAFF)) {
1043    eset = EXPOSE_OPSTAFF;
1044  } else if (!strcasecmp(exposure,EXPOSE_REALMVIS)) {
1045    eset = EXPOSE_REALMVIS;
1046  } else if (!strcasecmp(exposure,EXPOSE_REALMANN)) {
1047    eset = EXPOSE_REALMANN;
1048  } else if (!strcasecmp(exposure,EXPOSE_NETVIS)) {
1049    eset = EXPOSE_NETVIS;
1050  } else if (!strcasecmp(exposure,EXPOSE_NETANN)) {
1051    eset = EXPOSE_NETANN;
1052  }
1053   
1054  ret=ZSetLocation(zstr(eset));
1055  if (ret != ZERR_NONE) {
1056    /*
1057      owl_function_makemsg("Error setting location: %s", error_message(ret));
1058    */
1059  }
1060#endif
1061}
1062
1063void owl_zephyr_zlog_out(void)
1064{
1065#ifdef HAVE_LIBZEPHYR
1066  int ret;
1067
1068  ZResetAuthentication();
1069  ret=ZUnsetLocation();
1070  if (ret != ZERR_NONE) {
1071    /*
1072      owl_function_makemsg("Error unsetting location: %s", error_message(ret));
1073    */
1074  }
1075#endif
1076}
1077
1078void owl_zephyr_addbuddy(const char *name)
1079{
1080  char *filename;
1081  FILE *file;
1082 
1083  filename = owl_zephyr_dotfile(".anyone", NULL);
1084  file = fopen(filename, "a");
1085  owl_free(filename);
1086  if (!file) {
1087    owl_function_error("Error opening zephyr buddy file for append");
1088    return;
1089  }
1090  fprintf(file, "%s\n", name);
1091  fclose(file);
1092}
1093
1094void owl_zephyr_delbuddy(const char *name)
1095{
1096  char *filename;
1097
1098  filename = owl_zephyr_dotfile(".anyone", NULL);
1099  owl_util_file_deleteline(filename, name, 0);
1100  owl_free(filename);
1101}
1102
1103/* return auth string */
1104#ifdef HAVE_LIBZEPHYR
1105const char *owl_zephyr_get_authstr(const ZNotice_t *n)
1106{
1107
1108  if (!n) return("UNKNOWN");
1109
1110  if (n->z_auth == ZAUTH_FAILED) {
1111    return ("FAILED");
1112  } else if (n->z_auth == ZAUTH_NO) {
1113    return ("NO");
1114  } else if (n->z_auth == ZAUTH_YES) {
1115    return ("YES");
1116  } else {
1117    return ("UNKNOWN");
1118  }           
1119}
1120#else
1121const char *owl_zephyr_get_authstr(const void *n)
1122{
1123  return("");
1124}
1125#endif
1126
1127/* Returns a buffer of subscriptions or an error message.  Caller must
1128 * free the return.
1129 */
1130char *owl_zephyr_getsubs(void)
1131{
1132#ifdef HAVE_LIBZEPHYR
1133  int ret, num, i, one;
1134  int buffsize;
1135  ZSubscription_t sub;
1136  char *out;
1137  one=1;
1138
1139  ret=ZRetrieveSubscriptions(0, &num);
1140  if (ret==ZERR_TOOMANYSUBS) {
1141    return(owl_strdup("Zephyr: too many subscriptions\n"));
1142  } else if (ret || (num <= 0)) {
1143    return(owl_strdup("Zephyr: error retriving subscriptions\n"));
1144  }
1145
1146  buffsize = (num + 1) * 50;
1147  out=owl_malloc(buffsize);
1148  strcpy(out, "");
1149  for (i=0; i<num; i++) {
1150    if ((ret = ZGetSubscriptions(&sub, &one)) != ZERR_NONE) {
1151      owl_free(out);
1152      ZFlushSubscriptions();
1153      out=owl_strdup("Error while getting subscriptions\n");
1154      return(out);
1155    } else {
1156      int tmpbufflen;
1157      char *tmpbuff;
1158      tmpbuff = owl_sprintf("<%s,%s,%s>\n%s", sub.zsub_class, sub.zsub_classinst, sub.zsub_recipient, out);
1159      tmpbufflen = strlen(tmpbuff) + 1;
1160      if (tmpbufflen > buffsize) {
1161        char *out2;
1162        buffsize = tmpbufflen * 2;
1163        out2 = owl_realloc(out, buffsize);
1164        if (out2 == NULL) {
1165          owl_free(out);
1166          owl_free(tmpbuff);
1167          ZFlushSubscriptions();
1168          out=owl_strdup("Realloc error while getting subscriptions\n");
1169          return(out);   
1170        }
1171        out = out2;
1172      }
1173      strcpy(out, tmpbuff);
1174      owl_free(tmpbuff);
1175    }
1176  }
1177
1178  ZFlushSubscriptions();
1179  return(out);
1180#else
1181  return(owl_strdup("Zephyr not available"));
1182#endif
1183}
1184
1185const char *owl_zephyr_get_variable(const char *var)
1186{
1187#ifdef HAVE_LIBZEPHYR
1188  return(ZGetVariable(zstr(var)));
1189#else
1190  return("");
1191#endif
1192}
1193
1194void owl_zephyr_set_locationinfo(const char *host, const char *val)
1195{
1196#ifdef HAVE_LIBZEPHYR
1197  ZInitLocationInfo(zstr(host), zstr(val));
1198#endif
1199}
1200 
1201/* Strip a local realm fron the zephyr user name.
1202 * The caller must free the return
1203 */
1204char *short_zuser(const char *in)
1205{
1206  char *out, *ptr;
1207
1208  out=owl_strdup(in);
1209  ptr=strchr(out, '@');
1210  if (ptr) {
1211    if (!strcasecmp(ptr+1, owl_zephyr_get_realm())) {
1212      *ptr='\0';
1213    }
1214  }
1215  return(out);
1216}
1217
1218/* Append a local realm to the zephyr user name if necessary.
1219 * The caller must free the return.
1220 */
1221char *long_zuser(const char *in)
1222{
1223  if (strchr(in, '@')) {
1224    return(owl_strdup(in));
1225  }
1226  return(owl_sprintf("%s@%s", in, owl_zephyr_get_realm()));
1227}
1228
1229/* strip out the instance from a zsender's principal.  Preserves the
1230 * realm if present.  daemon.webzephyr is a special case.  The
1231 * caller must free the return
1232 */
1233char *owl_zephyr_smartstripped_user(const char *in)
1234{
1235  char *ptr, *realm, *out;
1236
1237  out=owl_strdup(in);
1238
1239  /* bail immeaditly if we don't have to do any work */
1240  ptr=strchr(out, '.');
1241  if (!strchr(out, '/') && !ptr) {
1242    /* no '/' and no '.' */
1243    return(out);
1244  }
1245  if (ptr && strchr(out, '@') && (ptr > strchr(out, '@'))) {
1246    /* There's a '.' but it's in the realm */
1247    return(out);
1248  }
1249  if (!strncasecmp(out, OWL_WEBZEPHYR_PRINCIPAL, strlen(OWL_WEBZEPHYR_PRINCIPAL))) {
1250    return(out);
1251  }
1252
1253  /* remove the realm from out, but hold on to it */
1254  realm=strchr(out, '@');
1255  if (realm) realm[0]='\0';
1256
1257  /* strip */
1258  ptr=strchr(out, '.');
1259  if (!ptr) ptr=strchr(out, '/');
1260  ptr[0]='\0';
1261
1262  /* reattach the realm if we had one */
1263  if (realm) {
1264    strcat(out, "@");
1265    strcat(out, realm+1);
1266  }
1267
1268  return(out);
1269}
1270
1271/* read the list of users in 'filename' as a .anyone file, and put the
1272 * names of the zephyr users in the list 'in'.  If 'filename' is NULL,
1273 * use the default .anyone file in the users home directory.  Returns
1274 * -1 on failure, 0 on success.
1275 */
1276int owl_zephyr_get_anyone_list(owl_list *in, const char *filename)
1277{
1278#ifdef HAVE_LIBZEPHYR
1279  char *ourfile, *tmp, *s = NULL;
1280  FILE *f;
1281
1282  ourfile = owl_zephyr_dotfile(".anyone", filename);
1283
1284  f = fopen(ourfile, "r");
1285  if (!f) {
1286    owl_function_error("Error opening file %s: %s", ourfile, strerror(errno) ? strerror(errno) : "");
1287    owl_free(ourfile);
1288    return -1;
1289  }
1290  owl_free(ourfile);
1291
1292  while (owl_getline_chomp(&s, f)) {
1293    /* ignore comments, blank lines etc. */
1294    if (s[0] == '#' || s[0] == '\0')
1295      continue;
1296
1297    /* ignore from # on */
1298    tmp = strchr(s, '#');
1299    if (tmp)
1300      tmp[0] = '\0';
1301
1302    /* ignore from SPC */
1303    tmp = strchr(s, ' ');
1304    if (tmp)
1305      tmp[0] = '\0';
1306
1307    owl_list_append_element(in, long_zuser(s));
1308  }
1309  owl_free(s);
1310  fclose(f);
1311  return 0;
1312#else
1313  return -1;
1314#endif
1315}
1316
1317#ifdef HAVE_LIBZEPHYR
1318void owl_zephyr_process_pseudologin(ZNotice_t *n)
1319{
1320  owl_message *m;
1321  owl_zbuddylist *zbl;
1322  GList **zaldlist;
1323  GList *zaldptr;
1324  ZAsyncLocateData_t *zald = NULL;
1325  ZLocations_t location;
1326  int numlocs, ret, notify;
1327
1328  /* Find a ZALD to match this notice. */
1329  zaldlist = owl_global_get_zaldlist(&g);
1330  zaldptr = g_list_first(*zaldlist);
1331  while (zaldptr) {
1332    if (ZCompareALDPred(n, zaldptr->data)) {
1333      zald = zaldptr->data;
1334      *zaldlist = g_list_remove(*zaldlist, zaldptr->data);
1335      break;
1336    }
1337    zaldptr = g_list_next(zaldptr);
1338  }
1339  if (zald) {
1340    /* Deal with notice. */
1341    notify = owl_global_get_pseudologin_notify(&g);
1342    zbl = owl_global_get_zephyr_buddylist(&g);
1343    ret = ZParseLocations(n, zald, &numlocs, NULL);
1344    if (ret == ZERR_NONE) {
1345      if (numlocs > 0 && !owl_zbuddylist_contains_user(zbl, zald->user)) {
1346        if (notify) {
1347          numlocs = 1;
1348          ret = ZGetLocations(&location, &numlocs);
1349          if (ret == ZERR_NONE) {
1350            /* Send a PSEUDO LOGIN! */
1351            m = owl_malloc(sizeof(owl_message));
1352            owl_message_create_pseudo_zlogin(m, 0, zald->user,
1353                                             location.host,
1354                                             location.time,
1355                                             location.tty);
1356            owl_global_messagequeue_addmsg(&g, m);
1357          }
1358          owl_zbuddylist_adduser(zbl, zald->user);
1359          owl_function_debugmsg("owl_function_zephyr_buddy_check: login for %s ", zald->user);
1360        }
1361      } else if (numlocs == 0 && owl_zbuddylist_contains_user(zbl, zald->user)) {
1362        /* Send a PSEUDO LOGOUT! */
1363        if (notify) {
1364          m = owl_malloc(sizeof(owl_message));
1365          owl_message_create_pseudo_zlogin(m, 1, zald->user, "", "", "");
1366          owl_global_messagequeue_addmsg(&g, m);
1367        }
1368        owl_zbuddylist_deluser(zbl, zald->user);
1369        owl_function_debugmsg("owl_function_zephyr_buddy_check: logout for %s ", zald->user);
1370      }
1371    }
1372    ZFreeALD(zald);
1373    owl_free(zald);
1374  }
1375}
1376#else
1377void owl_zephyr_process_pseudologin(void *n)
1378{
1379}
1380#endif
1381
1382void owl_zephyr_buddycheck_timer(owl_timer *t, void *data)
1383{
1384  if (owl_global_is_pseudologins(&g)) {
1385    owl_function_debugmsg("Doing zephyr buddy check");
1386    owl_function_zephyr_buddy_check(1);
1387  } else {
1388    owl_function_debugmsg("Warning: owl_zephyr_buddycheck_timer call pointless; timer should have been disabled");
1389  }
1390}
1391
1392/*
1393 * Process zephyrgrams from libzephyr's queue. To prevent starvation,
1394 * process a maximum of OWL_MAX_ZEPHYRGRAMS_TO_PROCESS.
1395 *
1396 * Returns the number of zephyrgrams processed.
1397 */
1398
1399#define OWL_MAX_ZEPHYRGRAMS_TO_PROCESS 20
1400
1401static int _owl_zephyr_process_events(void)
1402{
1403  int zpendcount=0;
1404#ifdef HAVE_LIBZEPHYR
1405  ZNotice_t notice;
1406  Code_t code;
1407  owl_message *m=NULL;
1408
1409  while(owl_zephyr_zpending() && zpendcount < OWL_MAX_ZEPHYRGRAMS_TO_PROCESS) {
1410    if (owl_zephyr_zpending()) {
1411      if ((code = ZReceiveNotice(&notice, NULL)) != ZERR_NONE) {
1412        owl_function_debugmsg("Error: %s while calling ZReceiveNotice\n",
1413                              error_message(code));
1414        continue;
1415      }
1416      zpendcount++;
1417
1418      /* is this an ack from a zephyr we sent? */
1419      if (owl_zephyr_notice_is_ack(&notice)) {
1420        owl_zephyr_handle_ack(&notice);
1421        ZFreeNotice(&notice);
1422        continue;
1423      }
1424
1425      /* if it's a ping and we're not viewing pings then skip it */
1426      if (!owl_global_is_rxping(&g) && !strcasecmp(notice.z_opcode, "ping")) {
1427        ZFreeNotice(&notice);
1428        continue;
1429      }
1430
1431      /* if it is a LOCATE message, it's for pseudologins. */
1432      if (strcmp(notice.z_opcode, LOCATE_LOCATE) == 0) {
1433        owl_zephyr_process_pseudologin(&notice);
1434        ZFreeNotice(&notice);
1435        continue;
1436      }
1437
1438      /* create the new message */
1439      m=owl_malloc(sizeof(owl_message));
1440      owl_message_create_from_znotice(m, &notice);
1441
1442      owl_global_messagequeue_addmsg(&g, m);
1443    }
1444  }
1445#endif
1446  return zpendcount;
1447}
1448
1449void owl_zephyr_process_events(const owl_io_dispatch *d, void *data)
1450{
1451  _owl_zephyr_process_events();
1452}
1453
1454int owl_zephyr_pre_select_action(owl_ps_action *a, void *p)
1455{
1456  return _owl_zephyr_process_events();
1457}
Note: See TracBrowser for help on using the repository browser.