summaryrefslogtreecommitdiff
path: root/src/libunixonacid/textclient_commandv.c
blob: 1983a33c5004eca2120b6c16339171201b2e1d5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* ISC license. */

#include <sys/uio.h>
#include <errno.h>

#include <skalibs/textclient.h>
#include <skalibs/posixishard.h>

int textclient_commandv (textclient *a, struct iovec const *v, unsigned int n, tain const *deadline, tain *stamp)
{
  struct iovec ans ;
  if (!textclient_exchangev(a, v, n, &ans, deadline, stamp)) return 0 ;
  if (ans.iov_len != 1) return (errno = EPROTO, 0) ;
  if (*(char *)ans.iov_base) return (errno = *(char *)ans.iov_base, 0) ;
  return 1 ;
}