diff options
author | Uros Majstorovic <majstor@majstor.org> | 2018-03-27 04:36:22 +0200 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2018-03-27 04:36:22 +0200 |
commit | 9ed7686b336eed7672d91ec4b2180e5d48a3fe80 (patch) | |
tree | be0ad92f70dd75b93ad29a60feb1fbe9696b2343 /code/ecp/vconn/vconn.c | |
parent | ef64f315409a23e6698f536e96ef56113ddff798 (diff) |
fixed timeuouts/retries
Diffstat (limited to 'code/ecp/vconn/vconn.c')
-rw-r--r-- | code/ecp/vconn/vconn.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/ecp/vconn/vconn.c b/code/ecp/vconn/vconn.c index 9549598..d7e2c02 100644 --- a/code/ecp/vconn/vconn.c +++ b/code/ecp/vconn/vconn.c @@ -94,7 +94,7 @@ static ssize_t vconn_open(ECPConnection *conn) { if (conn_next == NULL) return ECP_ERR; - ssize_t _rv = ecp_timer_send(conn_next, _vconn_send_open, ECP_MTYPE_KGET_REP, 3, 3000); + ssize_t _rv = ecp_timer_send(conn_next, _vconn_send_open, ECP_MTYPE_KGET_REP, 3, 1000); if (_rv < 0) return _rv; return _rv; |