summaryrefslogtreecommitdiffstats
path: root/usr.sbin/bgpctl/json.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* No need to include sys/cdefs.h hereclaudio2020-10-211-1/+0
|
* Using int64_t together with printf %llu is not portable. Either add aclaudio2020-05-041-2/+2
| | | | | | | cast in the printf to unsigned long long or just use unsigned long long from the start. In this case it is better to switch the type. Similar changes had been done before. OK deraadt@
* Add support to output data in JSON. This is still work in progress andclaudio2020-05-021-0/+31
the output structures may still change but it should be a good starting point for poeple to start playing with it. OK benno@, job@, deraadt@