summaryrefslogtreecommitdiffstats
path: root/hcid/rfcomm-api.txt
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2007-05-08 18:15:04 +0000
committerMarcel Holtmann <marcel@holtmann.org>2007-05-08 18:15:04 +0000
commit6dcf05d8bbdbc878bc829d6b77286bbcbcb7a159 (patch)
tree8418f9e33ae64d00049eaed332c8febb528d96ef /hcid/rfcomm-api.txt
parent7e1400ac4c259b464d8f0d4c30abf2ee59f3f664 (diff)
Remove RFCOMM interface from official documentation
Diffstat (limited to 'hcid/rfcomm-api.txt')
-rw-r--r--hcid/rfcomm-api.txt58
1 files changed, 58 insertions, 0 deletions
diff --git a/hcid/rfcomm-api.txt b/hcid/rfcomm-api.txt
new file mode 100644
index 00000000..827fde5a
--- /dev/null
+++ b/hcid/rfcomm-api.txt
@@ -0,0 +1,58 @@
+RFCOMM hierarchy (experimental)
+===============================
+
+Service org.bluez
+Interface org.bluez.RFCOMM
+Object path /org/bluez/{hci0,hci1,...}
+
+Methods string Connect(string address, string service)
+
+ This creates a connection to a remote RFCOMM based
+ service. The service string can either be a UUID-128,
+ a service abbreviation or a record handle.
+
+ The return value will be the path of the newly
+ created RFCOMM TTY device (for example /dev/rfcomm0).
+
+ If the application disconnects from the D-Bus this
+ connection will be terminated.
+
+ Valid service values: "vcp", "map", "pbap", "sap",
+ "ftp", "bpp", "bip", "synch",
+ "dun", "opp", "fax", "spp"
+
+ void CancelConnect(string address, string service)
+
+ This method cancels a previous Connect method call.
+
+ string ConnectByChannel(string address, byte channel)
+
+ This creates a connection to a remote RFCOMM based
+ service. In contrast to Connect a channel number is
+ needed.
+
+ The return value will be the path of the newly
+ creates RFCOMM TTY device (for example /dev/rfcomm0).
+
+ If the application disconnects from the D-Bus this
+ connection will be terminated.
+
+ void CancelConnectByChannel(string address, byte channel)
+
+ This method cancels a previous ConnectByChannel
+ method call.
+
+ void Disconnect(string device)
+
+ This will disconnect a previously connected RFCOMM
+ service. The device parameter must be the return value
+ from a previous Connect or ConnectByChannel method
+ call (for example /dev/rfcomm0).
+
+ string Bind(string address, string service)
+
+ string BindByChannel(string address, byte channel)
+
+ void Release(string device)
+
+ array{string} ListBindings()