This website works better with JavaScript.
Home
Explore
Help
Sign In
yigitcolakoglu
/
mconnect
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
3
Wiki
Activity
Browse Source
device: interface for sending messages to a device
bboozzoo/share-upload
Maciek Borzecki
7 years ago
parent
f09247894a
commit
1f84d84767
1 changed files
with
7 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+7
-0
src/mconnect/device.vala
+ 7
- 0
src/mconnect/device.vala
View File
@ -592,4 +592,11 @@ class Device : Object {
this.certificate_fingerprint = sb.str;
}
public void send(Packet pkt) {
// TODO: queue messages
if (this._channel != null) {
_channel.send(pkt);
}
}
}
Write
Preview
Loading…
Cancel
Save