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

#include <stdint.h>

#include <skalibs/uint32.h>
#include <skalibs/tai.h>

#include "hpr.h"

int hpr_shutdown (unsigned int what, tain_t const *when, unsigned int grace)
{
  char pack[5 + TAIN_PACK] = { "Shpr"[what] } ;
  tain_pack(pack+1, when) ;
  uint32_pack_big(pack + 1 + TAIN_PACK, (uint32_t)grace) ;
  return hpr_send(pack, 5 + TAIN_PACK) ;
}