Browse Source

Use the send recv proc helper in the stratifier process

master
Con Kolivas 11 years ago
parent
commit
bbd4e59069
  1. 15
      src/stratifier.c

15
src/stratifier.c

@ -19,20 +19,9 @@
static void update_base(ckpool_t *ckp) static void update_base(ckpool_t *ckp)
{ {
char *path = ckp->generator.us.path, *buf; char *buf;
int genfd;
genfd = open_unix_client(ckp->generator.us.path); buf = send_recv_proc(&ckp->generator, "getbase");
if (genfd < 0) {
LOGWARNING("Failed to open generator socket %s", path);
return;
}
if (!send_unix_msg(genfd, "getbase")) {
LOGWARNING("Failed to send getbase to generator socket");
close(genfd);
return;
}
buf = recv_unix_msg(genfd);
/* Do something with this buffer here */ /* Do something with this buffer here */
dealloc(buf); dealloc(buf);
} }

Loading…
Cancel
Save