@@ -3706,8 +3706,6 @@ WOLFSENTRY_API wolfsentry_errcode_t wolfsentry_route_table_iterate_end(
37063706 WOLFSENTRY_RETURN_OK ;
37073707}
37083708
3709- #ifndef WOLFSENTRY_NO_STDIO_STREAMS
3710-
37113709static inline char hexdigit_ntoa (unsigned int d ) {
37123710 d &= 0xf ;
37133711 if (d < 10 )
@@ -3796,7 +3794,6 @@ WOLFSENTRY_API wolfsentry_errcode_t wolfsentry_route_format_address(
37963794 } else
37973795 WOLFSENTRY_ERROR_RETURN (OP_NOT_SUPP_FOR_PROTO );
37983796}
3799- #endif
38003797
38013798#if defined(WOLFSENTRY_PROTOCOL_NAMES ) || defined(WOLFSENTRY_JSON_DUMP_UTILS ) || !defined(WOLFSENTRY_NO_JSON )
38023799
@@ -4007,7 +4004,6 @@ WOLFSENTRY_API wolfsentry_errcode_t wolfsentry_route_format_json(
40074004 write_string ("\"remote\":{" );
40084005
40094006 if (have_r_attr (SA_REMOTE_ADDR )) {
4010- #ifndef WOLFSENTRY_NO_STDIO_STREAMS
40114007#ifdef WOLFSENTRY_ADDR_BITMASK_MATCHING
40124008 if (r -> flags & WOLFSENTRY_ROUTE_FLAG_REMOTE_ADDR_BITMASK ) {
40134009 int len_in_out = (int )* json_out_len ;
@@ -4054,7 +4050,6 @@ WOLFSENTRY_API wolfsentry_errcode_t wolfsentry_route_format_json(
40544050 WOLFSENTRY_RERETURN_IF_ERROR (ws_itoa (WOLFSENTRY_ROUTE_REMOTE_ADDR_BITS (r ), json_out , json_out_len ));
40554051 write_byte (',' );
40564052 }
4057- #endif /* !WOLFSENTRY_NO_STDIO_STREAMS */
40584053 }
40594054 if (have_r_attr (SA_REMOTE_PORT )) {
40604055 write_string ("\"port\":" );
@@ -4077,7 +4072,6 @@ WOLFSENTRY_API wolfsentry_errcode_t wolfsentry_route_format_json(
40774072 write_string ("\"local\":{" );
40784073
40794074 if (have_r_attr (SA_LOCAL_ADDR )) {
4080- #ifndef WOLFSENTRY_NO_STDIO_STREAMS
40814075#ifdef WOLFSENTRY_ADDR_BITMASK_MATCHING
40824076 if (r -> flags & WOLFSENTRY_ROUTE_FLAG_LOCAL_ADDR_BITMASK ) {
40834077 int len_in_out = (int )* json_out_len ;
@@ -4124,7 +4118,6 @@ WOLFSENTRY_API wolfsentry_errcode_t wolfsentry_route_format_json(
41244118 WOLFSENTRY_RERETURN_IF_ERROR (ws_itoa (WOLFSENTRY_ROUTE_LOCAL_ADDR_BITS (r ), json_out , json_out_len ));
41254119 write_byte (',' );
41264120 }
4127- #endif /* !WOLFSENTRY_NO_STDIO_STREAMS */
41284121 }
41294122
41304123 if (have_r_attr (SA_LOCAL_PORT )) {
0 commit comments