actually dispatch RUA messages to RUA handling code
diff --git a/src/hnbgw.c b/src/hnbgw.c
index 71224a1..7c12155 100644
--- a/src/hnbgw.c
+++ b/src/hnbgw.c
@@ -23,6 +23,7 @@
 
 #include "hnbgw.h"
 #include "hnbgw_hnbap.h"
+#include "hnbgw_rua.h"
 
 static void *tall_hnb_ctx;
 void *talloc_asn1_ctx;
@@ -68,7 +69,7 @@
 		break;
 	case IUH_PPI_RUA:
 		hnb->rua_stream = sinfo.sinfo_stream;
-		//rc = hnbgw_rua_rx(hnb, msg);
+		rc = hnbgw_rua_rx(hnb, msg);
 		break;
 	case IUH_PPI_SABP:
 	case IUH_PPI_RNA: