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

Comparing gvpe/src/vpn_dns.C (file contents):
Revision 1.36 by pcg, Thu Mar 17 22:24:31 2005 UTC vs.
Revision 1.37 by pcg, Wed Mar 23 17:03:58 2005 UTC

47#include "vpn.h" 47#include "vpn.h"
48 48
49#define MAX_POLL_INTERVAL 5. // how often to poll minimally when the server has no data 49#define MAX_POLL_INTERVAL 5. // how often to poll minimally when the server has no data
50#define ACTIVITY_INTERVAL 5. 50#define ACTIVITY_INTERVAL 5.
51 51
52#define TIMEOUT_FACTOR 8.
53
54#define INITIAL_TIMEOUT 0.1 // retry timeouts 52#define INITIAL_TIMEOUT 0.1 // retry timeouts
55#define INITIAL_SYN_TIMEOUT 2. // retry timeout for initial syn 53#define INITIAL_SYN_TIMEOUT 2. // retry timeout for initial syn
56 54
57#define MIN_SEND_INTERVAL 0.001 // wait at least this time between sending requests
58#define MAX_SEND_INTERVAL 2. // optimistic? 55#define MAX_SEND_INTERVAL 2. // optimistic?
59 56
60#define LATENCY_FACTOR 0.5 // RTT * LATENCY_FACTOR == sending rate
61#define MAX_OUTSTANDING 100 // max. outstanding requests
62#define MAX_WINDOW 1000 // max. for MAX_OUTSTANDING, and backlog 57#define MAX_WINDOW 1000 // max. for MAX_OUTSTANDING, and backlog
63#define MAX_BACKLOG (64*1024) // size of gvpe protocol backlog (bytes), must be > MAXSIZE 58#define MAX_BACKLOG (64*1024) // size of gvpe protocol backlog (bytes), must be > MAXSIZE
64 59
65#define MAX_DOMAIN_SIZE 240 // 255 is legal limit, but bind doesn't compress well 60#define MAX_DOMAIN_SIZE 240 // 255 is legal limit, but bind doesn't compress well
66// 240 leaves about 4 bytes of server reply data 61// 240 leaves about 4 bytes of server reply data
1033 double latency = NOW - (*i)->sent; 1028 double latency = NOW - (*i)->sent;
1034 1029
1035 if (latency < dns->min_latency) 1030 if (latency < dns->min_latency)
1036 dns->min_latency = latency; 1031 dns->min_latency = latency;
1037 1032
1038 if (dns->send_interval > dns->min_latency * LATENCY_FACTOR) 1033 if (dns->send_interval > dns->min_latency * conf.dns_overlap_factor)
1039 dns->send_interval = dns->min_latency * LATENCY_FACTOR; 1034 dns->send_interval = dns->min_latency * conf.dns_overlap_factor;
1040 1035
1041 if (dns->send_interval < MIN_SEND_INTERVAL) 1036 if (dns->send_interval < conf.dns_send_interval)
1042 dns->send_interval = MIN_SEND_INTERVAL; 1037 dns->send_interval = conf.dns_send_interval;
1043 } 1038 }
1044 1039
1045 delete *i; 1040 delete *i;
1046 dns_sndpq.erase (i); 1041 dns_sndpq.erase (i);
1047 1042
1228 if (!send) 1223 if (!send)
1229 { 1224 {
1230 send = r; 1225 send = r;
1231 1226
1232 r->retry++; 1227 r->retry++;
1233 r->timeout = NOW + (r->retry * min_latency * TIMEOUT_FACTOR); 1228 r->timeout = NOW + (r->retry * min_latency * conf.dns_timeout_factor);
1234 1229
1235 // the following code changes the query section a bit, forcing 1230 // the following code changes the query section a bit, forcing
1236 // the forwarder to generate a new request 1231 // the forwarder to generate a new request
1237 if (r->stdhdr) 1232 if (r->stdhdr)
1238 { 1233 {
1257 1252
1258 cfg.reset (THISNODE->id); 1253 cfg.reset (THISNODE->id);
1259 send->gen_syn_req (); 1254 send->gen_syn_req ();
1260 } 1255 }
1261 } 1256 }
1262 else if (vpn->dns_sndpq.size () < MAX_OUTSTANDING 1257 else if (vpn->dns_sndpq.size () < conf.dns_max_outstanding
1263 && !SEQNO_EQ (rcvseq, sndseq - (MAX_WINDOW - 1))) 1258 && !SEQNO_EQ (rcvseq, sndseq - (MAX_WINDOW - 1)))
1264 { 1259 {
1265 if (last_sent + send_interval <= NOW) 1260 if (last_sent + send_interval <= NOW)
1266 { 1261 {
1267 //printf ("sending data request etc.\n"); //D 1262 //printf ("sending data request etc.\n"); //D
1271 NEXT (NOW + send_interval); 1266 NEXT (NOW + send_interval);
1272 } 1267 }
1273 1268
1274 send = new dns_snd (this); 1269 send = new dns_snd (this);
1275 send->gen_stream_req (sndseq, snddq); 1270 send->gen_stream_req (sndseq, snddq);
1276 send->timeout = NOW + min_latency * TIMEOUT_FACTOR; 1271 send->timeout = NOW + min_latency * conf.dns_timeout_factor;
1277 1272
1278 sndseq = (sndseq + 1) & SEQNO_MASK; 1273 sndseq = (sndseq + 1) & SEQNO_MASK;
1279 } 1274 }
1280 else 1275 else
1281 NEXT (last_sent + send_interval); 1276 NEXT (last_sent + send_interval);
1297 poll_interval, send_interval, next - NOW, 1292 poll_interval, send_interval, next - NOW,
1298 vpn->dns_sndpq.size (), snddq.size (), 1293 vpn->dns_sndpq.size (), snddq.size (),
1299 rcvpq.size ()); 1294 rcvpq.size ());
1300 1295
1301 // TODO: no idea when this happens, but when next < NOW, we have a problem 1296 // TODO: no idea when this happens, but when next < NOW, we have a problem
1297 // doesn't seem to happen anymore
1302 if (next < NOW + 0.001) 1298 if (next < NOW + 0.001)
1303 next = NOW + 0.1; 1299 next = NOW + 0.1;
1304 1300
1305 w.start (next); 1301 w.start (next);
1306} 1302}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines