| Scott Baker | 34dc67e | 2018-10-02 15:57:50 -0700 | [diff] [blame^] | 1 | {% for object in proto.messages|sort(attribute='name') %} |
| 2 | {%- for field in xproto_fields(object, proto.message_table) | sort(attribute='id') %} | ||||
| 3 | {{ object.name }},{{ field.name }},{{ field.id }} | ||||
| 4 | {%- endfor %} | ||||
| 5 | {%- for field in xproto_rlinks(object, proto.message_table) | sort(attribute='id') %} | ||||
| 6 | {{ object.name}},{{ field.src_port }}_ids,{{ field.id }} | ||||
| 7 | {%- endfor %} | ||||
| 8 | {%- endfor %} | ||||