summaryrefslogtreecommitdiff
path: root/src/ipcpd/normal/cdap_flow.c
Commit message (Collapse)AuthorAgeFilesLines
* ipcpd: normal: Deprecate CDAP flowSander Vrijders2017-03-031-186/+0
| | | | This removes the CDAP flow class, which is no longer needed.
* lib: Split CACEP into request/response protocoldimitri staessens2017-02-281-4/+44
|
* lib: Split authentication from CACEPdimitri staessens2017-02-271-14/+11
| | | | | | | By removing authentication as part of CACEP, all policies disappear. CACEP becomes a policy-free connection establishment protocol between Application Entities. Authentication can later be added cleanly as a pure policy function when needed.
* lib: Remove application entity nameSander Vrijders2017-02-241-3/+2
| | | | | The AE name should not be passed over the layer boundaries. If an application has more than one AE it should exchange this in CACEP.
* Revise CACEP APIdimitri staessens2017-02-241-12/+12
| | | | | | The information passed to CACEP is split between the information about the connection and the information to be used during the authentication exchange.
* lib: Exchange protocol info during CACEPdimitri staessens2017-02-211-5/+2
| | | | | | | | | This exchanges a protocol name, a protocol version and concrete syntax for the protocol upon CACEP. For CDAP, only version 1 and GPB are supported. No lists for other supported versions or syntaxes are exchanged (but the proto file supports it). CACEP fails if there is a mismatch between the protocol names, version and syntax specified by the communicating parties.
* ipcpd: Allocation of authenticated CDAP flowsdimitri staessens2017-02-201-0/+153
Avoids some code duplication in the normal IPCP with respect to establishing authenticated CDAP flows.