summaryrefslogtreecommitdiff
path: root/src/tools/irm/irm.c
Commit message (Collapse)AuthorAgeFilesLines
* lib, irmd, tools, ipcpd: updates to dev API.dimitri staessens2016-06-131-2/+3
| | | | | | | | | | | | | | | The registration function has been moved to the irm tool, applications now need to be registered by an administrator. Currently only supports one instance per registered name, and an AP can be registered under only one name. The irmd can now start a registered server application on demand. For the full functionality of the tool, execute "irm register". AP name removed from flow allocation. Flow allocation does not send the source ap name as it is quite useless. The accept() call now only returns the AE name.
* lib: renamed rina_name_t to instance_name_tdimitri staessens2016-03-301-1/+1
| | | | | all functions taking a char * ap_name and uint id now take either a instance_name_t or instance_name_t *
* tools: Simple echo applicationSander Vrijders2016-03-211-2/+1
| | | | | | This adds a simple echo application written to show application how to use the API. It also updates the dev.h header file with the insights gained from performing this excercise.
* lib: Add helpers for RINA namesSander Vrijders2016-03-111-0/+1
| | | | This adds helper functions for RINA names, to aid with handling them.
* tools: irm: Change description in irm fileSander Vrijders2016-03-031-1/+1
| | | | This adds the word daemon to the description of the IRM tool.
* tools: irm: Provide all IRM callsSander Vrijders2016-03-031-4/+4
| | | | | | | This commit makes all IRM calls available to the user of the 'irm' tool. The bootstrap_ipcp call does not yet take the anything except the AP name. This will be added once we stabilize what should be configurable in the IPCP.
* tools: irm: Parse arguments for irm and create_ipcpSander Vrijders2016-03-021-0/+84
This parses the arguments passed to irm at the top level, and also the arguments supplied when calling irm create_ipcp. It subsequently calls irm_create_ipcp with these arguments.