Bring listener operations naming scheme in line with the rest
The main naming scheme is OPER_TYPE (i.e., dds_create_participant) but the listener operations were named TYPE_OPER (i.e., dds_listener_create). This commit brings the listener scheme in line with the rest, retaining the old names as a deprecated interface. Signed-off-by: Erik Boasson <eb@ilities.com>
This commit is contained in:
parent
651bdfee06
commit
ec68eeac29
13 changed files with 115 additions and 79 deletions
|
@ -125,8 +125,8 @@ Test(ddsc_entity, qos, .init = create_entity, .fini = delete_entity)
|
|||
Test(ddsc_entity, listener, .init = create_entity, .fini = delete_entity)
|
||||
{
|
||||
dds_return_t status;
|
||||
dds_listener_t *l1 = dds_listener_create(NULL);
|
||||
dds_listener_t *l2 = dds_listener_create(NULL);
|
||||
dds_listener_t *l1 = dds_create_listener(NULL);
|
||||
dds_listener_t *l2 = dds_create_listener(NULL);
|
||||
void *cb1;
|
||||
void *cb2;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue