1 /* SPDX-License-Identifier: Apache-2.0 */ 2 /* Copyright (C) 2018 IBM Corp. */ 3 4 #ifndef TRANSPORT_DBUS_H 5 #define TRANSPORT_DBUS_H 6 7 #include "dbus.h" 8 #include "transport.h" 9 10 int transport_dbus_init(struct mbox_context *context, 11 const struct transport_ops **ops); 12 void transport_dbus_free(struct mbox_context *context); 13 14 #endif /* TRANSPORT_DBUS_H */ 15