public ServiceBrowser(Client client, int iface, Protocol proto, string type, string domain, LookupFlags flags)
 {
     this.client = client;
     this.iface  = iface;
     this.proto  = proto;
     this.domain = domain;
     this.type   = type;
     this.flags  = flags;
     cb          = OnServiceBrowserCallback;
 }
 private static extern IntPtr avahi_service_browser_new(IntPtr client, int iface, int proto, byte[] type,
                                                        byte[] domain, LookupFlags flags,
                                                        ServiceBrowserCallback cb,
                                                        IntPtr userdata);
Beispiel #3
0
 public ServiceBrowser(Client client, int iface, Protocol proto, string type, string domain, LookupFlags flags)
 {
     this.client = client;
     this.iface = iface;
     this.proto = proto;
     this.domain = domain;
     this.type = type;
     this.flags = flags;
     cb = OnServiceBrowserCallback;
 }
Beispiel #4
0
 private static extern IntPtr avahi_service_browser_new(IntPtr client, int iface, int proto, byte[] type,
                                                         byte[] domain, LookupFlags flags,
                                                         ServiceBrowserCallback cb,
                                                         IntPtr userdata);