Changeset 11328 for trunk/FACT++


Ignore:
Timestamp:
07/10/11 22:19:56 (13 years ago)
Author:
tbretz
Message:
Updated EvalConfiguration to parse the address options one by one.
File:
1 edited

Legend:

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

    r11285 r11328  
    16271627        // ^^^^^ for debugging ^^^^^
    16281628
    1629         if (!(conf.Has("base-addr") ^ conf.Has("addr")))
    1630         {
    1631            T::Out() << kRed << "EvalConfiguration - Only --base-addr or --addr allowed." << endl;
    1632            return 2;
    1633         }
    1634 
    16351629        if (conf.Has("base-addr"))
    16361630        {
     
    16611655                    AddEndpoint(tcp::endpoint(ba::ip::address_v4(target), endpoint.port()));
    16621656                }
     1657
     1658            StartConnection();
     1659            return -1;
     1660
    16631661        }
    16641662
     
    16741672                AddEndpoint(endpoint);
    16751673            }
    1676         }
    1677 
    1678         StartConnection();
     1674
     1675            StartConnection();
     1676            return -1;
     1677        }
    16791678
    16801679        return -1;
Note: See TracChangeset for help on using the changeset viewer.