Changeset 2135
- Timestamp:
- 05/01/12 17:30:16 (12 years ago)
- Files:
-
- trunk/libffado/src/dice/dice_eap.cpp (modified) (2 diffs)
- trunk/libffado/src/dice/dice_eap.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/libffado/src/dice/dice_eap.cpp
r2134 r2135 1665 1665 { 1666 1666 // first clear the current route vector 1667 m_routes2.clear();1667 clearRoutes(); 1668 1668 1669 1669 uint32_t nb_routes; … … 1731 1731 } 1732 1732 1733 // Clear the route vector; 1734 bool 1735 EAP::RouterConfig::clearRoutes() { 1736 m_routes2.clear(); 1737 return true; 1738 } 1739 1740 // Create a destination with a prescribed source 1733 1741 bool 1734 1742 EAP::RouterConfig::createRoute(unsigned char src, unsigned char dest) { trunk/libffado/src/dice/dice_eap.h
r2134 r2135 216 216 @brief Create a route between src and dest 217 217 218 Clear the route vector 219 To be used with many care ! 220 */ 221 bool clearRoutes(); 222 223 /** 224 @brief Create a route between src and dest 225 218 226 This will effectively create a new destination. 219 If destination exists or its status unknown,227 If a destination exists or its status is unknown, 220 228 rather use the next setupRoute function 221 229 */