summaryrefslogtreecommitdiffstats
path: root/cpukit/mghttpd/mongoose.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/mghttpd/mongoose.c')
-rw-r--r--cpukit/mghttpd/mongoose.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/cpukit/mghttpd/mongoose.c b/cpukit/mghttpd/mongoose.c
index dd243d3320..a89fc56885 100644
--- a/cpukit/mghttpd/mongoose.c
+++ b/cpukit/mghttpd/mongoose.c
@@ -5519,3 +5519,15 @@ struct mg_context *mg_start(const struct mg_callbacks *callbacks,
return ctx;
}
+#ifdef __rtems__
+#include <rtems/print.h>
+
+static int mg_printer_plugin(void *context, const char *fmt, va_list ap) {
+ return mg_vprintf(context, fmt, ap);
+}
+
+void rtems_print_printer_mg_printf(rtems_printer *printer, struct mg_connection *conn) {
+ printer->context = conn;
+ printer->printer = mg_printer_plugin;
+}
+#endif /* __rtems__ */