tcpserver.h 232 B

1234567891011
  1. /*
  2. * SPDX-FileCopyrightText: 2019 Helmut Pozimski <helmut@pozimski.eu>
  3. *
  4. * SPDX-License-Identifier: GPL-2.0-only
  5. */
  6. #include <stdint.h>
  7. int tcpserver_start(const char *address, uint16_t port);
  8. void tcpserver_stop(int sock);