X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Frconn.c;h=4c6c9e955a5e0358c3381e9376408e63e16e006b;hb=f1acd62b54376a425a975f9af501c4c8c5689b39;hp=1301f25cac2822a427c689ef8f9b4c2634fe9601;hpb=193456d581423f894e57e8463ff5049c0d802f0a;p=sliver-openvswitch.git diff --git a/lib/rconn.c b/lib/rconn.c index 1301f25ca..4c6c9e955 100644 --- a/lib/rconn.c +++ b/lib/rconn.c @@ -89,7 +89,7 @@ struct rconn { time_t last_admitted; /* These values are simply for statistics reporting, not used directly by - * anything internal to the rconn (or the secchan for that matter). */ + * anything internal to the rconn (or ofproto for that matter). */ unsigned int packets_received; unsigned int n_attempted_connections, n_successful_connections; time_t creation_time; @@ -159,7 +159,7 @@ rconn_new_from_vconn(const char *name, struct vconn *vconn) * 'max_backoff' is the maximum number of seconds between attempts to connect * to the peer. The actual interval starts at 1 second and doubles on each * failure until it reaches 'max_backoff'. If 0 is specified, the default of - * 60 seconds is used. */ + * 8 seconds is used. */ struct rconn * rconn_create(int probe_interval, int max_backoff) { @@ -175,7 +175,7 @@ rconn_create(int probe_interval, int max_backoff) queue_init(&rc->txq); rc->backoff = 0; - rc->max_backoff = max_backoff ? max_backoff : 60; + rc->max_backoff = max_backoff ? max_backoff : 8; rc->backoff_deadline = TIME_MIN; rc->last_received = time_now(); rc->last_connected = time_now();