File: server.h

package info (click to toggle)
callisto 1.1.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 748 kB
  • sloc: sh: 4,139; ansic: 1,951; perl: 271; makefile: 17
file content (9 lines) | stat: -rw-r--r-- 157 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
#ifndef CALLISTO_SERVER_H
#define CALLISTO_SERVER_H

#include <inttypes.h>

int server_init(uint16_t port, int ipv4, int ipv6);
void server_start();

#endif