Patrick Venture | c01edf2 | 2017-12-22 14:03:06 -0800 | [diff] [blame] | 1 | ## This file is a template. The comment below is emitted |
| 2 | ## into the rendered file; feel free to edit this file. |
| 3 | // !!! WARNING: This is a GENERATED Code..Please do NOT Edit !!! |
| 4 | |
| 5 | #include "types.hpp" |
| 6 | |
| 7 | namespace ipmi |
| 8 | { |
| 9 | namespace network |
| 10 | { |
| 11 | |
| 12 | extern const ChannelEthMap ethdevices = { |
| 13 | % for channel,channelInfo in interfaceDict.iteritems(): |
| 14 | {${channel},"${channelInfo['ifName']}"}, |
| 15 | % endfor |
| 16 | }; |
| 17 | |
| 18 | } // namespace network |
| 19 | } // namespace ipmi |
| 20 | |