diff options
| author | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-02-15 12:14:30 +0100 | 
|---|---|---|
| committer | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-02-15 12:14:30 +0100 | 
| commit | c8bb6577989e8e72626fcf63a4d1b6b54154f86c (patch) | |
| tree | 8206564bb9674ccf3adfef52bac6a672ae577e04 /include | |
| parent | 583efb4910a5287d8ca4a35896f751c167ec0d4d (diff) | |
| download | ouroboros-c8bb6577989e8e72626fcf63a4d1b6b54154f86c.tar.gz ouroboros-c8bb6577989e8e72626fcf63a4d1b6b54154f86c.zip | |
include: Rename parts of rina_name_t
The ids of the name are now referring to the instance.
Diffstat (limited to 'include')
| -rw-r--r-- | include/ouroboros/common.h | 9 | 
1 files changed, 7 insertions, 2 deletions
| diff --git a/include/ouroboros/common.h b/include/ouroboros/common.h index 4d76d230..f2be815f 100644 --- a/include/ouroboros/common.h +++ b/include/ouroboros/common.h @@ -35,9 +35,9 @@ typedef struct {  typedef struct {          char * ap_name; -        int ap_id; +        int api_id;          char * ae_name; -        int ae_id; +        int aei_id;  } rina_name_t;  /* FIXME: To be extended to have all QoS params */ @@ -48,4 +48,9 @@ struct qos_spec {          double jitter;  }; +/* FIXME: What should be configurable in the DIF? */ +struct dif_info { +        int cep_id_size; +}; +  #endif | 
