summaryrefslogtreecommitdiff
path: root/src/irmd/ipcp.h
Commit message (Collapse)AuthorAgeFilesLines
* lib, irmd, ipcpd: Add name querying to IPCPsSander Vrijders2016-10-261-0/+2
| | | | | | | | | This adds the ability to query IPCPs if a name can be reached through them, e.g. if a name is available in a DIF. This means that in the shim-udp a DNS query is performed, in the shim-eth-llc an ARP-like query has been added, in the local a check is done to see if the name is registered, and in the normal currently no application is reachable through it.
* lib, ipcp: Revise fast path and flow interfacesdimitri staessens2016-10-041-0/+62
IPCPs can now use ap_init() to initialize the memory. All flows are accessed using flow descriptors, this greatly simplifies IPCP development. Reverts the fast path to a single ap_rbuff per process. Splits lib/ipcp into irmd/ipcp and lib/ipcp-dev. Adds a lib/shim-dev holding tailored functions for shims. Moves the buffer_t to utils.h. Fixes the shim-eth-llc length field. Removes the flow from shared.h. Fixes #4 Fixes #5