ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/gvpe/src/vpn.h
(Generate patch)

Comparing gvpe/src/vpn.h (file contents):
Revision 1.1 by pcg, Wed Apr 2 03:25:17 2003 UTC vs.
Revision 1.5 by pcg, Sun Apr 6 04:17:36 2003 UTC

17*/ 17*/
18 18
19#ifndef VPE_VPN_H__ 19#ifndef VPE_VPN_H__
20#define VPE_VPN_H__ 20#define VPE_VPN_H__
21 21
22#include <netinet/ip.h>
23
24#include "global.h"
22#include "conf.h" 25#include "conf.h"
23#include "device.h" 26#include "device.h"
24#include "connection.h" 27#include "connection.h"
25 28
26struct vpn 29struct vpn
27 { 30 {
28 int udpv4_fd; 31 int udpv4_fd, tcpv4_fd, ipv4_fd;
29 int ipv4_fd;
30 32
31 int events; 33 int events;
32 34
33 enum { 35 enum {
34 EVENT_RECONNECT = 1, 36 EVENT_RECONNECT = 1,
35 EVENT_SHUTDOWN = 2, 37 EVENT_SHUTDOWN = 2,
36 }; 38 };
37 39
38 void event_cb (tstamp &ts); time_watcher event; 40 void event_cb (time_watcher &w); time_watcher event;
39 41
40 tap_device *tap; 42 tap_device *tap;
41 43
42 typedef vector<connection *> conns_vector; 44 typedef vector<connection *> conns_vector;
43 conns_vector conns; 45 conns_vector conns;
46 48
47 void reconnect_all (); 49 void reconnect_all ();
48 void shutdown_all (); 50 void shutdown_all ();
49 void connect_request (int id); 51 void connect_request (int id);
50 52
51 void tap_ev (short revents); io_watcher tap_ev_watcher;
52 void ipv4_ev (short revents); io_watcher ipv4_ev_watcher;
53 void udpv4_ev (short revents); io_watcher udpv4_ev_watcher;
54
55 void recv_vpn_packet (vpn_packet *pkt, const sockinfo &rsi); 53 void recv_vpn_packet (vpn_packet *pkt, const sockinfo &rsi);
56 54
55 void tap_ev (io_watcher &w, short revents); io_watcher tap_ev_watcher;
56
57 void send_vpn_packet (vpn_packet *pkt, const sockinfo &si, int tos = 0);
58
59#if ENABLE_TCP
60 void tcpv4_ev (io_watcher &w, short revents); io_watcher tcpv4_ev_watcher;
61 void send_tcpv4_packet (vpn_packet *pkt, const sockinfo &si, int tos);
62#endif
63
64 void udpv4_ev (io_watcher &w, short revents); io_watcher udpv4_ev_watcher;
57 void send_udpv4_packet (vpn_packet *pkt, const sockinfo &si, int tos = IPTOS_RELIABILITY); 65 void send_udpv4_packet (vpn_packet *pkt, const sockinfo &si, int tos);
66
67 void ipv4_ev (io_watcher &w, short revents); io_watcher ipv4_ev_watcher;
58 void send_ipv4_packet (vpn_packet *pkt, const sockinfo &si, int tos = IPTOS_RELIABILITY); 68 void send_ipv4_packet (vpn_packet *pkt, const sockinfo &si, int tos);
59 69
60 vpn (); 70 vpn ();
61 ~vpn (); 71 ~vpn ();
62 72
63 int setup (); 73 int setup ();
64 74
65 void dump_status (); 75 void dump_status ();
66 76
67 const char *script_if_up (int); 77 const char *script_if_up ();
68 }; 78 };
69 79
70#endif 80#endif
71 81

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines