0

I am using DBus in a project. I understand from DBus specification that for low level communication, it uses Unix domain sockets. I don't want to use Unix domain sockets for low level communication because I have a modified connect() call. Is there any other type of low level communication that DBus supports which does not use connect()? If yes then how to switch to that mode?

Philip Withnall
  • 5,293
  • 14
  • 28
Methos
  • 13,608
  • 11
  • 46
  • 49

1 Answers1

2

Judging from the D-Bus Tutorial, at the moment, D-Bus only supports sockets, which may be Unix-domain or TCP/IP.

GEOCHET
  • 21,119
  • 15
  • 74
  • 98
Jonathan Leffler
  • 730,956
  • 141
  • 904
  • 1,278