Files
rtbrick-bngblaster/code/bngblaster/src/bbl_ctrl.h
T

22 lines
402 B
C

/*
* BNG Blaster (BBL) - Control Socket
*
* Christian Giese, January 2021
*
* Copyright (C) 2020-2022, RtBrick, Inc.
* SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef __BBL_CTRL_H__
#define __BBL_CTRL_H__
ssize_t
bbl_ctrl_status(int fd, const char *status, uint32_t code, const char *message);
bool
bbl_ctrl_socket_open (bbl_ctx_s *ctx);
bool
bbl_ctrl_socket_close (bbl_ctx_s *ctx);
#endif