YARP
Yet Another Robot Platform
Using YARP without a name server

YARP programs usually expect a special YARP name server to be running.

This can be avoided, if you decide to allocate names yourself. If you call a port by a name with a tcp socket number in it:

Port p;
p.open("/myhost:9999");

Then no name server is needed.