1
0
Fork 0
mirror of https://github.com/albfan/miraclecast.git synced 2025-03-09 23:38:56 +00:00

demo/miracle-wfdctl: broadcast as source only device

Change-Id: Id159332fc644e09990abdebffa8fa4b9f8b2fc28
This commit is contained in:
Derek Dai 2017-05-04 11:41:44 +08:00
parent c032dbdfd4
commit 7aeaacf1dd
No known key found for this signature in database
GPG key ID: E109CC97553EF009

View file

@ -110,7 +110,7 @@ private class WfdCtl : GLib.Application
const GLib.OptionEntry[] option_entries = {
{ "interface", 'i', 0, OptionArg.STRING, ref opt_iface, "name of wireless network interface", "WNIC name" },
{ "wfd-subelems", 'w', 0, OptionArg.STRING, ref opt_wfd_subelems, "device infomation. default: 000600111c4400c8", "device info subelems" },
{ "wfd-subelems", 'w', 0, OptionArg.STRING, ref opt_wfd_subelems, "device infomation. default: 000600001c4400c8", "device info subelems" },
{ "peer-mac", 'p', 0, OptionArg.STRING, ref opt_peer_mac, "MAC address of target peer", "peer MAC" },
{ "authority", 'x', 0, OptionArg.STRING, ref opt_authority, "authority to capture from display. default: XAUTHORITY environment variable", "display authority" },
{ "display", 'd', 0, OptionArg.STRING, ref opt_display, "display name. default: DISPLAY environment variable", "display name" },
@ -638,7 +638,7 @@ private class WfdCtl : GLib.Application
print("interface=%s", opt_iface);
if(null == opt_wfd_subelems) {
opt_wfd_subelems = "000600111c4400c8";
opt_wfd_subelems = "000600001c4400c8";
}
print("wfd_subelemens=%s", opt_wfd_subelems);