public ServiceTypeBrowser(Client client, int iface, Protocol proto, string domain, LookupFlags flags)
 {
     this.client = client;
     this.iface  = iface;
     this.proto  = proto;
     this.domain = domain;
     this.flags  = flags;
     cb          = OnServiceTypeBrowserCallback;
 }
 private static extern IntPtr avahi_service_type_browser_new(IntPtr client, int iface, int proto,
                                                             byte[] domain, LookupFlags flags,
                                                             ServiceTypeBrowserCallback cb,
                                                             IntPtr userdata);
Example #3
0
 private static extern IntPtr avahi_service_type_browser_new (IntPtr client, int iface, int proto,
                                                              byte[] domain, LookupFlags flags,
                                                              ServiceTypeBrowserCallback cb,
                                                              IntPtr userdata);
Example #4
0
 public ServiceTypeBrowser (Client client, int iface, Protocol proto, string domain, LookupFlags flags)
 {
     this.client = client;
     this.iface = iface;
     this.proto = proto;
     this.domain = domain;
     this.flags = flags;
     cb = OnServiceTypeBrowserCallback;
 }