if link head is DuplexNetworkInterface ; then do something else do something else fi
<mrtproto> instproc <method> { argslist } { ... }will change to
<mrtproto> instproc <method> { args } { ... }In this case, the args form of describing the input arguments to is a Tcl idiom that is *more natural* to OTcl; however, it means that functions that call this method should no longer wrap their arguments into a single list. In particular, this will cause OTcl to pass the arguments as a doubly nested list, and likely confuse such methods. This also involves other changes to the internal calling APIs that could affect the way the base classes interact with your routing protocol. We will attempt to document all the details as we accomplish these changes.
Last Updated: $Date: 2004/05/20 17:23:59 $