File: network.h

package info (click to toggle)
horst 4.2-1
  • links: PTS, VCS
  • area: contrib
  • in suites: stretch
  • size: 792 kB
  • ctags: 1,571
  • sloc: ansic: 8,021; makefile: 87; sh: 30
file content (53 lines) | stat: -rw-r--r-- 1,342 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/* horst - Highly Optimized Radio Scanning Tool
 *
 * Copyright (C) 2005-2014 Bruno Randolf (br1@einfach.org)
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */

#ifndef _PROTOCOL_NETWORK_H_
#define _PROTOCOL_NETWORK_H_

#include <stddef.h>

struct packet_info;

extern int srv_fd;
extern int cli_fd;

void
net_init_server_socket(char* rport);

int net_handle_server_conn(void);

int
net_send_packet(struct packet_info *pkt);

void
net_send_channel_config(void);

void
net_send_filter_config(void);

int
net_receive(int fd, unsigned char* buffer, size_t* buflen, size_t maxlen);

int
net_open_client_socket(char* server, char* rport);

void
net_finish(void);

#endif