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.13 by pcg, Sat Jan 17 01:18:36 2004 UTC vs.
Revision 1.14 by pcg, Fri Apr 2 14:42:45 2004 UTC

25#include "device.h" 25#include "device.h"
26#include "connection.h" 26#include "connection.h"
27 27
28struct vpn 28struct vpn
29 { 29 {
30 int udpv4_fd, tcpv4_fd, ipv4_fd, icmpv4_fd; 30 int udpv4_fd, tcpv4_fd, ipv4_fd, icmpv4_fd, dnsv4_fd;
31 31
32 int events; 32 int events;
33 33
34 enum { 34 enum {
35 EVENT_RECONNECT = 1, 35 EVENT_RECONNECT = 1,
65#if ENABLE_ICMP 65#if ENABLE_ICMP
66 void icmpv4_ev (io_watcher &w, short revents); io_watcher icmpv4_ev_watcher; 66 void icmpv4_ev (io_watcher &w, short revents); io_watcher icmpv4_ev_watcher;
67 bool send_icmpv4_packet (vpn_packet *pkt, const sockinfo &si, int tos); 67 bool send_icmpv4_packet (vpn_packet *pkt, const sockinfo &si, int tos);
68#endif 68#endif
69 69
70#if ENABLE_DNS
71 void dnsv4_ev (io_watcher &w, short revents); io_watcher dnsv4_ev_watcher;
72 bool send_dnsv4_packet (vpn_packet *pkt, const sockinfo &si, int tos);
73#endif
74
70 void udpv4_ev (io_watcher &w, short revents); io_watcher udpv4_ev_watcher; 75 void udpv4_ev (io_watcher &w, short revents); io_watcher udpv4_ev_watcher;
71 bool send_udpv4_packet (vpn_packet *pkt, const sockinfo &si, int tos); 76 bool send_udpv4_packet (vpn_packet *pkt, const sockinfo &si, int tos);
72 77
73 void ipv4_ev (io_watcher &w, short revents); io_watcher ipv4_ev_watcher; 78 void ipv4_ev (io_watcher &w, short revents); io_watcher ipv4_ev_watcher;
74 bool send_ipv4_packet (vpn_packet *pkt, const sockinfo &si, int tos); 79 bool send_ipv4_packet (vpn_packet *pkt, const sockinfo &si, int tos);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines