-/* $OpenBSD: output.c,v 1.55 2024/10/01 11:50:15 claudio Exp $ */
+/* $OpenBSD: output.c,v 1.56 2024/10/01 18:33:16 claudio Exp $ */
/*
* Copyright (c) 2003 Henning Brauer <henning@openbsd.org>
ina.s_addr = htonl(p->remote_bgpid);
printf(" BGP version 4, remote router-id %s",
inet_ntoa(ina));
- printf("%s\n", fmt_auth_method(p->auth_state.method));
+ printf("%s\n", fmt_auth_method(p->auth_conf.method));
}
printf(" BGP state = %s", statenames[p->state]);
if (p->conf.down) {
-/* $OpenBSD: output_json.c,v 1.47 2024/10/01 11:50:15 claudio Exp $ */
+/* $OpenBSD: output_json.c,v 1.48 2024/10/01 18:33:16 claudio Exp $ */
/*
* Copyright (c) 2020 Claudio Jeker <claudio@openbsd.org>
json_do_uint("max_out_prefix_restart",
p->conf.max_out_prefix_restart);
}
- if (p->auth_state.method != AUTH_NONE)
+ if (p->auth_conf.method != AUTH_NONE)
json_do_string("authentication",
- fmt_auth_method(p->auth_state.method));
+ fmt_auth_method(p->auth_conf.method));
json_do_bool("ttl_security", p->conf.ttlsec);
json_do_uint("holdtime", p->conf.holdtime);
json_do_uint("min_holdtime", p->conf.min_holdtime);