skalibs

Mirror/fork of https://skarnet.org/software/skalibs/
git clone https://ccx.te2000.cz/git/skalibs
Log | Files | Refs | README | LICENSE

skaclient_sendmsg.c (340B)


      1 /* ISC license. */
      2 
      3 #include <skalibs/skaclient.h>
      4 
      5 int skaclient_sendmsg_and_close (skaclient *a, unixmessage const *m, unsigned char const *bits, unixmessage_handler_func_ref cb, void *result, tain const *deadline, tain *stamp)
      6 {
      7   return skaclient_putmsg_and_close(a, m, bits, cb, result)
      8    && skaclient_syncify(a, deadline, stamp) ;
      9 }