1
0

InterfaceConnector.c 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /* vim: set expandtab ts=4 sw=4: */
  2. /*
  3. * You may redistribute this program and/or modify it under the terms of
  4. * the GNU General Public License as published by the Free Software Foundation,
  5. * either version 3 of the License, or (at your option) any later version.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. *
  12. * You should have received a copy of the GNU General Public License
  13. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. #include "interface/Interface.h"
  16. #include "wire/Message.h"
  17. static uint8_t transferMessage(struct Message* msg, struct Interface* iface)
  18. {
  19. struct Interface* other = (struct Interface*) iface->receiverContext;
  20. return other->sendMessage(msg, other);
  21. }
  22. /**
  23. * Connect two interfaces together like a double female adapter.
  24. * Any traffic coming in on one will be forwarded to the other.
  25. *
  26. * @param a one interface.
  27. * @param b another interface.
  28. */
  29. void InterfaceConnector_connect(struct Interface* a, struct Interface* b)
  30. {
  31. a->receiveMessage = transferMessage;
  32. a->receiverContext = b;
  33. b->receiveMessage = transferMessage;
  34. b->receiverContext = a;
  35. }