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

Comparing gvpe/src/connection.h (file contents):
Revision 1.13 by pcg, Tue Jan 27 05:56:35 2004 UTC vs.
Revision 1.16 by pcg, Wed Mar 2 05:49:31 2005 UTC

109 109
110 pkt_queue (); 110 pkt_queue ();
111 ~pkt_queue (); 111 ~pkt_queue ();
112 }; 112 };
113 113
114enum
115 {
116 FEATURE_COMPRESSION = 0x01,
117 FEATURE_ROHC = 0x02,
118 };
119
114struct connection 120struct connection
115 { 121 {
116 conf_node *conf; 122 conf_node *conf;
117 struct vpn *vpn; 123 struct vpn *vpn;
118 124
123 129
124 u32 oseqno; 130 u32 oseqno;
125 sliding_window iseqno; 131 sliding_window iseqno;
126 132
127 u8 protocol; 133 u8 protocol;
134 u8 features;
128 135
129 pkt_queue data_queue, vpn_queue; 136 pkt_queue data_queue, vpn_queue;
130 137
131 crypto_ctx *octx, *ictx; 138 crypto_ctx *octx, *ictx;
139
140#if ENABLE_DNS
141 sockinfo dns_si;
142
143 struct byte_stream *dns_rcvdq; int dns_rcvseq;
144 struct byte_stream *dns_snddq; int dns_sndseq;
145
146 void dnsv4_cb (time_watcher &w); time_watcher dnsv4_tw;
147 bool send_dnsv4_packet (vpn_packet *pkt, const sockinfo &si, int tos);
148#endif
132 149
133 enum conf_node::connectmode connectmode; 150 enum conf_node::connectmode connectmode;
134 u8 prot_minor; // minor number of other side 151 u8 prot_minor; // minor number of other side
135 152
136 void reset_si (); 153 void reset_si ();
162 const char *script_node_up (); 179 const char *script_node_up ();
163 const char *script_node_down (); 180 const char *script_node_down ();
164 181
165 void dump_status (); 182 void dump_status ();
166 183
167 connection(struct vpn *vpn_); 184 connection (struct vpn *vpn, conf_node *conf);
168 ~connection (); 185 ~connection ();
169 }; 186 };
170 187
171#endif 188#endif
172 189

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines