attempt to get avahi code working without breaking abi.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@30957 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2010-07-13 12:13:31 +00:00
parent 4db2b9cf28
commit 2d4d2d6dc4
5 changed files with 61 additions and 50 deletions

View file

@ -3,24 +3,24 @@
Written by: Niels Grewe <niels.grewe@halbordnung.de>
Date: March 2010
This file is part of the GNUstep Base Library.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free
Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02111 USA.
*/
*/
#import "common.h"
#define EXPOSE_NSNetServices_IVARS 1
@ -33,10 +33,6 @@
* NSNetService using the mDNSResponder API.
*/
@interface GSMDNSNetService : NSNetService
{
void *_netService;
void *_reserved;
}
@end
@ -44,10 +40,6 @@
* NSNetServiceBrowser using the mDNSResponder API.
*/
@interface GSMDNSNetServiceBrowser : NSNetServiceBrowser
{
void *_netServiceBrowser;
void *_reserved;
}
@end
// Subclasses using Avahi:
@ -109,7 +101,6 @@ NSString* GSNetServiceDotTerminatedNSStringFromString(const char* string);
NSMapTable *_browsers;
NSMapTable *_browserTimeouts;
NSTimer *_timer;
id _reserved;
}
/**
@ -139,6 +130,5 @@ NSString* GSNetServiceDotTerminatedNSStringFromString(const char* string);
GSAvahiBrowserType _type;
BOOL _hasFirstEvent;
NSMutableDictionary *_services;
id _reserved;
}
@end