mirror of
https://github.com/rtbrick/bngblaster.git
synced 2024-05-06 15:54:57 +00:00
092d91b2aa
+ extend session-counters + extend interfaces
22 lines
396 B
C
22 lines
396 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__
|
|
|
|
int
|
|
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 |