mboxd: Rename mboxd_msg to transport_mbox

Change-Id: I0f4e206648c02a98fa938a7e582470c8d90904f1
Signed-off-by: Andrew Jeffery <andrew@aj.id.au>
diff --git a/test/Makefile.am.include b/test/Makefile.am.include
index d85dac3..feb1c97 100644
--- a/test/Makefile.am.include
+++ b/test/Makefile.am.include
@@ -19,7 +19,7 @@
 	%reldir%/tmpf.c
 
 TEST_MBOX_SRCS = \
-	mboxd_msg.c \
+	transport_mbox.c \
 	windows.c \
 	lpc.c \
 	lpc_reset.c \
diff --git a/test/bmc_event_ack_v2.c b/test/bmc_event_ack_v2.c
index 627309c..3bf1f37 100644
--- a/test/bmc_event_ack_v2.c
+++ b/test/bmc_event_ack_v2.c
@@ -8,7 +8,7 @@
 #include <unistd.h>
 
 #include "mbox.h"
-#include "mboxd_msg.h"
+#include "transport_mbox.h"
 
 #include "test/mbox.h"
 #include "test/system.h"
diff --git a/test/close_window_v2.c b/test/close_window_v2.c
index 0e3dd55..ae9c7f4 100644
--- a/test/close_window_v2.c
+++ b/test/close_window_v2.c
@@ -4,7 +4,7 @@
 #include <assert.h>
 
 #include "mbox.h"
-#include "mboxd_msg.h"
+#include "transport_mbox.h"
 
 #include "test/mbox.h"
 #include "test/system.h"
diff --git a/test/create_oversize_window.c b/test/create_oversize_window.c
index c60b19c..fa0f99d 100644
--- a/test/create_oversize_window.c
+++ b/test/create_oversize_window.c
@@ -4,7 +4,7 @@
 #include <assert.h>
 
 #include "mbox.h"
-#include "mboxd_msg.h"
+#include "transport_mbox.h"
 
 #include "test/mbox.h"
 #include "test/system.h"
diff --git a/test/create_read_window_v2.c b/test/create_read_window_v2.c
index 6085f96..12f0208 100644
--- a/test/create_read_window_v2.c
+++ b/test/create_read_window_v2.c
@@ -4,7 +4,7 @@
 #include <assert.h>
 
 #include "mbox.h"
-#include "mboxd_msg.h"
+#include "transport_mbox.h"
 
 #include "test/mbox.h"
 #include "test/system.h"
diff --git a/test/create_write_window_v2.c b/test/create_write_window_v2.c
index 2ec59d6..568735a 100644
--- a/test/create_write_window_v2.c
+++ b/test/create_write_window_v2.c
@@ -4,7 +4,7 @@
 #include <assert.h>
 
 #include "mbox.h"
-#include "mboxd_msg.h"
+#include "transport_mbox.h"
 
 #include "test/mbox.h"
 #include "test/system.h"
diff --git a/test/create_zero_size_window.c b/test/create_zero_size_window.c
index 4f26cd7..14cff6c 100644
--- a/test/create_zero_size_window.c
+++ b/test/create_zero_size_window.c
@@ -4,7 +4,7 @@
 #include <assert.h>
 
 #include "mbox.h"
-#include "mboxd_msg.h"
+#include "transport_mbox.h"
 
 #include "test/mbox.h"
 #include "test/system.h"
diff --git a/test/get_flash_info_v2.c b/test/get_flash_info_v2.c
index ccb1473..7fb3703 100644
--- a/test/get_flash_info_v2.c
+++ b/test/get_flash_info_v2.c
@@ -4,7 +4,7 @@
 #include <assert.h>
 
 #include "mbox.h"
-#include "mboxd_msg.h"
+#include "transport_mbox.h"
 
 #include "test/mbox.h"
 #include "test/system.h"
diff --git a/test/get_mbox_info_v2.c b/test/get_mbox_info_v2.c
index 2149737..bcfa2ef 100644
--- a/test/get_mbox_info_v2.c
+++ b/test/get_mbox_info_v2.c
@@ -4,7 +4,7 @@
 #include <assert.h>
 
 #include "mbox.h"
-#include "mboxd_msg.h"
+#include "transport_mbox.h"
 
 #include "test/mbox.h"
 #include "test/system.h"
diff --git a/test/get_mbox_info_v2_timeout.c b/test/get_mbox_info_v2_timeout.c
index 8587dfe..c296f5a 100644
--- a/test/get_mbox_info_v2_timeout.c
+++ b/test/get_mbox_info_v2_timeout.c
@@ -4,7 +4,7 @@
 #include <assert.h>
 
 #include "mbox.h"
-#include "mboxd_msg.h"
+#include "transport_mbox.h"
 
 #include "test/mbox.h"
 #include "test/system.h"
diff --git a/test/implicit_flush.c b/test/implicit_flush.c
index a09b034..8c79cff 100644
--- a/test/implicit_flush.c
+++ b/test/implicit_flush.c
@@ -5,7 +5,7 @@
 #include <sys/mman.h>
 
 #include "mbox.h"
-#include "mboxd_msg.h"
+#include "transport_mbox.h"
 
 #include "test/mbox.h"
 #include "test/system.h"
diff --git a/test/invalid_command.c b/test/invalid_command.c
index d277551..c486dc5 100644
--- a/test/invalid_command.c
+++ b/test/invalid_command.c
@@ -4,7 +4,7 @@
 #include <assert.h>
 
 #include "mbox.h"
-#include "mboxd_msg.h"
+#include "transport_mbox.h"
 
 #include "test/mbox.h"
 #include "test/system.h"
diff --git a/test/mark_read_dirty.c b/test/mark_read_dirty.c
index 36e14bd..ea2774a 100644
--- a/test/mark_read_dirty.c
+++ b/test/mark_read_dirty.c
@@ -4,7 +4,7 @@
 #include <assert.h>
 
 #include "mbox.h"
-#include "mboxd_msg.h"
+#include "transport_mbox.h"
 
 #include "test/mbox.h"
 #include "test/system.h"
diff --git a/test/mark_write_dirty_v2.c b/test/mark_write_dirty_v2.c
index 2ea12ae..365750f 100644
--- a/test/mark_write_dirty_v2.c
+++ b/test/mark_write_dirty_v2.c
@@ -4,7 +4,7 @@
 #include <assert.h>
 
 #include "mbox.h"
-#include "mboxd_msg.h"
+#include "transport_mbox.h"
 
 #include "test/mbox.h"
 #include "test/system.h"
diff --git a/test/mark_write_erased_v2.c b/test/mark_write_erased_v2.c
index 09efc2a..4698ed3 100644
--- a/test/mark_write_erased_v2.c
+++ b/test/mark_write_erased_v2.c
@@ -5,7 +5,7 @@
 #include <sys/mman.h>
 
 #include "mbox.h"
-#include "mboxd_msg.h"
+#include "transport_mbox.h"
 
 #include "test/mbox.h"
 #include "test/system.h"
diff --git a/test/mbox.c b/test/mbox.c
index 4a213dc..dbf2526 100644
--- a/test/mbox.c
+++ b/test/mbox.c
@@ -16,7 +16,7 @@
 #include "mbox.h"
 #include "flash.h"
 #include "lpc.h"
-#include "mboxd_msg.h"
+#include "transport_mbox.h"
 #include "windows.h"
 
 #include "test/mbox.h"
diff --git a/test/mbox.h b/test/mbox.h
index 4344622..30d36b6 100644
--- a/test/mbox.h
+++ b/test/mbox.h
@@ -9,7 +9,7 @@
 
 #include "common.h"
 #include "mbox.h"
-#include "mboxd_msg.h"
+#include "transport_mbox.h"
 
 #include "tmpf.h"
 
diff --git a/test/read_window_cycle.c b/test/read_window_cycle.c
index c2f8920..ec2bc37 100644
--- a/test/read_window_cycle.c
+++ b/test/read_window_cycle.c
@@ -4,7 +4,7 @@
 #include <assert.h>
 
 #include "mbox.h"
-#include "mboxd_msg.h"
+#include "transport_mbox.h"
 
 #include "test/mbox.h"
 #include "test/system.h"
diff --git a/test/read_window_mark_write_erased.c b/test/read_window_mark_write_erased.c
index 7daf9a1..61e760d 100644
--- a/test/read_window_mark_write_erased.c
+++ b/test/read_window_mark_write_erased.c
@@ -4,7 +4,7 @@
 #include <assert.h>
 
 #include "mbox.h"
-#include "mboxd_msg.h"
+#include "transport_mbox.h"
 
 #include "test/mbox.h"
 #include "test/system.h"
diff --git a/test/read_window_write_flush.c b/test/read_window_write_flush.c
index 01bbba4..0131cb8 100644
--- a/test/read_window_write_flush.c
+++ b/test/read_window_write_flush.c
@@ -4,7 +4,7 @@
 #include <assert.h>
 
 #include "mbox.h"
-#include "mboxd_msg.h"
+#include "transport_mbox.h"
 
 #include "test/mbox.h"
 #include "test/system.h"
diff --git a/test/request_high_version.c b/test/request_high_version.c
index b85e63f..9ffbba4 100644
--- a/test/request_high_version.c
+++ b/test/request_high_version.c
@@ -4,7 +4,7 @@
 #include <assert.h>
 
 #include "mbox.h"
-#include "mboxd_msg.h"
+#include "transport_mbox.h"
 
 #include "test/mbox.h"
 #include "test/system.h"
diff --git a/test/request_low_version.c b/test/request_low_version.c
index 5f003f4..7b7abf7 100644
--- a/test/request_low_version.c
+++ b/test/request_low_version.c
@@ -4,7 +4,7 @@
 #include <assert.h>
 
 #include "mbox.h"
-#include "mboxd_msg.h"
+#include "transport_mbox.h"
 
 #include "test/mbox.h"
 #include "test/system.h"
diff --git a/test/reset_state.c b/test/reset_state.c
index b110f44..05f98d6 100644
--- a/test/reset_state.c
+++ b/test/reset_state.c
@@ -4,7 +4,7 @@
 #include <assert.h>
 
 #include "mbox.h"
-#include "mboxd_msg.h"
+#include "transport_mbox.h"
 
 #include "test/mbox.h"
 #include "test/system.h"
diff --git a/test/sequence_numbers.c b/test/sequence_numbers.c
index 3d7d6e9..201a5bd 100644
--- a/test/sequence_numbers.c
+++ b/test/sequence_numbers.c
@@ -4,7 +4,7 @@
 #include <assert.h>
 
 #include "mbox.h"
-#include "mboxd_msg.h"
+#include "transport_mbox.h"
 
 #include "test/mbox.h"
 #include "test/system.h"
diff --git a/test/write_flush_v2.c b/test/write_flush_v2.c
index c762a76..ff1be25 100644
--- a/test/write_flush_v2.c
+++ b/test/write_flush_v2.c
@@ -5,7 +5,7 @@
 #include <sys/mman.h>
 
 #include "mbox.h"
-#include "mboxd_msg.h"
+#include "transport_mbox.h"
 
 #include "test/mbox.h"
 #include "test/system.h"
diff --git a/test/write_window_dirty_erase.c b/test/write_window_dirty_erase.c
index 03e7d38..9bc25e7 100644
--- a/test/write_window_dirty_erase.c
+++ b/test/write_window_dirty_erase.c
@@ -5,7 +5,7 @@
 #include <sys/mman.h>
 
 #include "mbox.h"
-#include "mboxd_msg.h"
+#include "transport_mbox.h"
 
 #include "test/mbox.h"
 #include "test/system.h"