Changeset 20405

Show
Ignore:
Timestamp:
06/30/07 10:04:24 (1 year ago)
Author:
patrick
Message:

MF12 r20221: Updated for the signature change to

vpr::InteAddr::getAllLocalAddrs() in VPR 1.1.43.

Bumped PyJuggler? version to 1.3.3.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • PyJuggler/trunk/ChangeLog

    r20404 r20405  
    11DATE        AUTHOR      CHANGE 
    22----------- ----------- ------------------------------------------------------- 
     3Jun-30-2007 patrick     Updated for VPR 1.1.43. 
     4                        NEW VERSION: 1.3.3 
    35Jun-30-2007 patrick     Updated for VR Juggler 2.3.4 and exposed 
    46                        vrj::Kernel::init(). 
  • PyJuggler/trunk/configure.ac

    r20404 r20405  
    410410fi 
    411411 
    412 VPR_PATH([1.1.20], , [AC_MSG_ERROR([*** VPR is required for PyJuggler ***])]) 
     412VPR_PATH([1.1.43], , [AC_MSG_ERROR([*** VPR is required for PyJuggler ***])]) 
    413413JCCL_PATH_CXX([1.1.11], , 
    414414              [AC_MSG_ERROR([*** JCCL is required for PyJuggler ***])]) 
  • PyJuggler/trunk/dist/__init__.py

    r20404 r20405  
    66__all__     = ["vrj", "cluster", "gadget", "snx", "jccl", "vpr"] 
    77__build__   = 1 
    8 __version__ = '1.3.2.%d' % __build__ 
     8__version__ = '1.3.3.%d' % __build__ 
    99__date__    = string.join(string.split('$Date$')[1:3], ' ') 
    1010__author__  = 'Patrick Hartling <patrick@infiscape.com>' 
  • PyJuggler/trunk/src/vpr/_InetAddr.cpp

    r19730 r20405  
    7070      ) 
    7171      .def("getAllLocalAddrs", &vpr::InetAddr::getAllLocalAddrs, 
    72            (args("withLoopback") = false), 
     72           (args("withLoopback") = false, args("withDown") = false), 
    7373           "getAllLocalAddrs(withLoopback = False) -> list of InetAddr objects\n" 
    7474           "Retrieves all the IPv4 addresses associated with the local\n" 
     
    7979           "                loopback address (127.0.0.1) in the returned\n" 
    8080           "                list. This parameter is optional and defaults to\n" 
    81            "                False." 
     81           "                False.\n" 
     82           "withDown     -- A Boolean flag indicating whether the address for\n" 
     83           "                interfaces in the down state should be included.\n" 
     84           "                This parameter is optional and defaults to False." 
    8285      ) 
    8386      .def("setAddress",