blob: 3c0dea4fd6cad2cfb176cd3c52a755c98dca29dd [file] [log] [blame]
Scott Bakerc237f882018-09-28 14:12:47 -07001
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 %}