corrected network udp functions
[my-code/ivac.git] / src / network.h
1 /* network.h -- network headers */
2
3 #ifndef NETWORK_H
4 #define NETWORK_H
5
6 /* includes */
7 #include <stdio.h>
8 #include <errno.h>
9 #include <string.h>
10 #include <sys/types.h>
11 #include <sys/socket.h>
12 #include <unistd.h>
13
14 /* net specific includes */
15 #include <netinet/in.h>
16 #include <arpa/inet.h>
17
18 /* defines */
19 #define MAX_CONNECTIONS 32
20
21 #define IP_DIGITS 16
22 #define C_IN_USE (1<<0)
23 #define C_INFO_A (1<<1)
24 #define C_SOCKET (1<<2)
25 #define C_ESTABL (1<<3)
26 #define C_HANGUP (1<<4)
27
28 #define SEND_N_MAX 128
29
30 #define N_SUCCESS 1
31 #define N_ERROR -1
32 #define N_E_IN_USE -2
33 #define N_E_NO_INFO -3
34 #define N_E_CLOSE -4
35 #define N_E_CONNECT -5
36 #define N_E_NC -6
37 #define N_E_ACCEPT -7
38 #define N_E_MAXC -8
39
40 #define N_UDP_WRONG_SENDER -9
41
42 #define MAX_LISTEN_QUEUE 32
43
44 /* net specific variables */
45 typedef struct s_connection {
46   int fd;
47   char ip[IP_DIGITS];
48   in_port_t port;
49   unsigned char status;
50   unsigned short cap; /* capabilities */
51 } t_connection;
52
53 typedef struct s_net {
54   int l_fd; /* fd for tcp conn */
55   int l_udp_fd; /* fd for udp data receive */
56   int s_udp_fd; /* fd for udp data send */
57   in_port_t l_port; /* tcp port */
58   int l_udp_port; /* udp listen port */
59   unsigned short cap;
60   /* limited connections by now -- replaced by list management later */
61   int c_count;
62   t_connection connection[MAX_CONNECTIONS];
63   unsigned int sendmask; /* 32 bits for maximum of 32 connections */
64 } t_net;
65
66 /* function prototypes */
67 int network_init(t_net *net);
68 int network_shutdown(t_net *net);
69 int network_set_listen_port(t_net *net,in_port_t port);
70 int network_manage_connection(t_net *net);
71 int network_connect(t_net *net,int channel);
72 int network_close(t_net *net,int channel);
73 int network_close_all(t_net *net);
74 int network_set_connection_info(t_net *net,int channel,char *ip,int port);
75 int network_select(t_net *net,int channel);
76 int network_deselect(t_net *net,int channel);
77 int network_manage_incoming(t_net *net);
78 int network_send(int fd,unsigned char *data,int datasize);
79 int network_receive(int fd,unsigned char *data,int datasize);
80 int network_udp_listen_init(t_net *net);
81 int network_udp_receive(t_net *net,int channel, unsigned char *data,int count);
82 int network_udp_send(t_net *net,int channel, unsigned char *data,int size);
83 int network_udp_shutdown(t_net *net);
84
85 #endif