diff options
author | venaas <venaas> | 2008-09-16 09:29:11 +0000 |
---|---|---|
committer | venaas <venaas@e88ac4ed-0b26-0410-9574-a7f39faa03bf> | 2008-09-16 09:29:11 +0000 |
commit | 7c62bcd00721941f7c28780266edb3076fc8b9d4 (patch) | |
tree | 938ea86d108a737859758d69b5baa6644ee6fc42 /dtls.c | |
parent | 52570225d77be0f9c751ab30e8ec6f98639be827 (diff) |
renamed some stuff, added client state for received rqs etc
git-svn-id: https://svn.testnett.uninett.no/radsecproxy/trunk@379 e88ac4ed-0b26-0410-9574-a7f39faa03bf
Diffstat (limited to 'dtls.c')
-rw-r--r-- | dtls.c | 22 |
1 files changed, 15 insertions, 7 deletions
@@ -248,7 +248,8 @@ void *dtlsserverwr(void *arg) { } void dtlsserverrd(struct client *client) { - struct request rq; + struct request *rq; + uint8_t *buf; pthread_t dtlsserverwrth; debug(DBG_DBG, "dtlsserverrd: starting for %s", client->conf->host); @@ -259,18 +260,25 @@ void dtlsserverrd(struct client *client) { } for (;;) { - memset(&rq, 0, sizeof(struct request)); - rq.buf = raddtlsget(client->ssl, client->rbios, IDLE_TIMEOUT); - if (!rq.buf) { + buf = raddtlsget(client->ssl, client->rbios, IDLE_TIMEOUT); + if (!buf) { debug(DBG_ERR, "dtlsserverrd: connection from %s lost", client->conf->host); break; } debug(DBG_DBG, "dtlsserverrd: got Radius message from %s", client->conf->host); - rq.from = client; - if (!radsrv(&rq)) { + rq = newrequest(); + if (!rq) { + free(buf); + continue; + } + rq->buf = buf; + rq->from = client; + if (!radsrv(rq)) { + freerq(rq); debug(DBG_ERR, "dtlsserverrd: message authentication/validation failed, closing connection from %s", client->conf->host); break; } + freerq(rq); } /* stop writer by setting ssl to NULL and give signal in case waiting for data */ @@ -308,7 +316,7 @@ void *dtlsservernew(void *arg) { while (conf) { if (verifyconfcert(cert, conf)) { X509_free(cert); - client = addclient(conf); + client = addclient(conf, 1); if (client) { client->sock = params->sock; client->rbios = params->sesscache->rbios; |