Changeset 11109


Ignore:
Timestamp:
06/22/11 17:04:09 (13 years ago)
Author:
tbretz
Message:
Implemented 'def' and 'default' as replacement for the default base-addr of the camera.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/fadctrl.cc

    r11100 r11109  
    15491549        if (conf.Has("base-addr"))
    15501550        {
    1551             const string base = conf.Get<string>("base-addr");
     1551            string base = conf.Get<string>("base-addr");
     1552
     1553            if (base=="def" || base =="default")
     1554                base = "10.0.128.128:5000";
    15521555
    15531556            const tcp::endpoint endpoint = GetEndpoint(base);
Note: See TracChangeset for help on using the changeset viewer.