diff options
-rw-r--r-- | radsecproxy.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/radsecproxy.c b/radsecproxy.c index a074ec2..e098a9a 100644 --- a/radsecproxy.c +++ b/radsecproxy.c @@ -1434,6 +1434,8 @@ void rmclientrq(struct request *rq, uint8_t id) { } } +/* Called from server readers, handling incoming requests from + * clients. */ /* returns 0 if validation/authentication fails, else 1 */ int radsrv(struct request *rq) { struct radmsg *msg = NULL; @@ -1602,6 +1604,7 @@ exit: return 1; } +/* Called from client readers, handling replies from servers. */ void replyh(struct server *server, unsigned char *buf) { struct client *from; struct rqout *rqout; |