| Scott Baker | c237f88 | 2018-09-28 14:12:47 -0700 | [diff] [blame] | 1 | |
| 2 | {% for object in proto.messages|sort(attribute='name') %} | ||||
| 3 | {{ object.name }} | ||||
| 4 | {%- for field in xproto_fields(object, proto.message_table) | sort(attribute='id') %} | ||||
| 5 | {{ field.name }}, {{ field.id }}, {{ field.accessor }} | ||||
| 6 | {%- endfor %} | ||||
| 7 | {%- for field in xproto_rlinks(object, proto.message_table) | sort(attribute='id') %} | ||||
| 8 | {{ field.src_port }}_ids, {{ field.id }}, {{ field.accessor }} | ||||
| 9 | {%- endfor %} | ||||
| 10 | |||||
| 11 | {% endfor %} | ||||