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:
Erik Boasson 2018-11-09 12:16:12 +01:00
parent 651bdfee06
commit ec68eeac29
13 changed files with 115 additions and 79 deletions

View file

@ -105,7 +105,7 @@ int main (int argc, char *argv[])
if (use_listener)
{
listener = dds_listener_create(NULL);
listener = dds_create_listener(NULL);
dds_lset_data_available(listener, data_available);
}