File: server.h

package info (click to toggle)
pcaputils 0.7-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 284 kB
  • ctags: 511
  • sloc: ansic: 2,905; makefile: 70; sh: 43
file content (10 lines) | stat: -rw-r--r-- 279 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
#ifndef RSEUTIL_SERVER_H
#define RSEUTIL_SERVER_H

#include "socket.h"
#include "uint.h"

extern int setup_tcp_server_socket(const char ip[4], const char ip6[16], u16 port, int backlog);
extern int setup_udp_server_socket(const char ip[4], const char ip6[16], u16 port);

#endif