diff options
author | Linus Nordberg <linus@nordu.net> | 2015-01-22 12:32:31 +0100 |
---|---|---|
committer | Linus Nordberg <linus@nordu.net> | 2015-01-22 12:32:31 +0100 |
commit | 5ca6565904dfebb5d3ea4b922dfb350c57d5e1a4 (patch) | |
tree | d815d6e9d55aa7235388ebd31e8681329dcade0e /develdoc.txt | |
parent | ea29482f849d95189ff5f1bad0a34393403e73e6 (diff) | |
parent | 0369f3420defa244e157aa94153e10eb65338057 (diff) |
Merge branch 'docu'
Diffstat (limited to 'develdoc.txt')
-rw-r--r-- | develdoc.txt | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/develdoc.txt b/develdoc.txt index 4380412..fb43cd0 100644 --- a/develdoc.txt +++ b/develdoc.txt @@ -21,8 +21,8 @@ This is all that happens in the main thread. The threads created above need to take care of the rest. Client writers are generally responsible for sending messages to -clients, and if necessary creating and maintaining connections to -the client. Client writers create threads for handling replies from +servers, and if necessary creating and maintaining connections to +the server. Client writers create threads for handling replies from servers. If connections are used, one thread is created for reading from each connection. clientwr() will use connecter() and clientconnreader() definitions for the transport. @@ -36,6 +36,16 @@ xxxserverrd, where xxx is the transport name. The server reader is responsible for creating a server writer thread that takes care of sending RADIUS replies to a client. +Summary of request and response proxied between client and server: + + request from client -> (listener ->) server reader + request queue + client writer -> request to server + + response from server -> client reader + reply queue + server writer -> response to client + 2. RADIUS message processing ============================ |