Changeset 5284 for sample/pingpong


Ignore:
Timestamp:
Jul 24, 2009, 3:23:11 PM (15 years ago)
Author:
mies
Message:

+ added new transport modules and adapted ariba to them
+ exchange endpoint descriptors an link establishment
+ clean up of base communication
+ link establishment with in the presence of multiple endpoints
+ local discovery for ipv6, ipv4 and bluetooth mac addresses

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sample/pingpong/PingPong.cpp

    r5151 r5284  
    4949
    5050        // configure ariba module
    51         if (config.exists("ariba.ip.addr")) ariba->setProperty("ip.addr",
    52                         config.read<string>("ariba.ip.addr"));
    53         if (config.exists("ariba.tcp.port")) ariba->setProperty("tcp.port",
    54                         config.read<string>("ariba.tcp.port"));
    55         if (config.exists("ariba.udp.port")) ariba->setProperty("udp.port",
    56                         config.read<string>("ariba.udp.port"));
    57         if (config.exists("ariba.bootstrap.hints")) ariba->setProperty("bootstrap.hints",
    58                         config.read<string>("ariba.bootstrap.hints"));
    59         if (config.exists("pingpong.name")) name =
    60                         config.read<string>("pingpong.name");
     51        if (config.exists("ariba.endpoints"))
     52                ariba->setProperty("endpoints", config.read<string>("ariba.endpoints"));
     53        if (config.exists("ariba.bootstrap.hints"))
     54                ariba->setProperty("bootstrap.hints", config.read<string>("ariba.bootstrap.hints"));
     55        if (config.exists("pingpong.name"))
     56                name = config.read<string>("pingpong.name");
    6157
    6258        // start ariba module
Note: See TracChangeset for help on using the changeset viewer.