/* NSPortNameServer.m Copyright (C) 1999 Helge Hess. All rights reserved. Author: Helge Hess This file is part of libFoundation. Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. We disclaim all warranties with regard to this software, including all implied warranties of merchantability and fitness, in no event shall we be liable for any special, indirect or consequential damages or any damages whatsoever resulting from loss of use, data or profits, whether in an action of contract, negligence or other tortious action, arising out of or in connection with the use or performance of this software. */ #include "NSPortNameServer.h" #include #include extern NSRecursiveLock *libFoundationLock; @implementation NSPortNameServer + (id)defaultPortNameServer { return [self notImplemented:_cmd]; } /* port registry */ - (BOOL)registerPort:(NSPort *)aPort forName:(NSString *)aPortName { [self notImplemented:_cmd]; return NO; } - (void)removePortForName:(NSString *)aPortName { [self notImplemented:_cmd]; } /* port lookup */ - (NSPort *)portForName:(NSString *)aPortName onHost:(NSString *)aHostName { return [self notImplemented:_cmd]; } - (NSPort *)portForName:(NSString *)aPortName { return [self portForName:aPortName onHost:nil]; } @end /* NSPortNameServer */ @implementation NSMessagePortNameServer : NSPortNameServer + (id)sharedInstance { static id si = nil; [libFoundationLock lock]; if (si == nil) si = [[NSMessagePortNameServer alloc] init]; [libFoundationLock unlock]; return si; } /* port lookup */ - (NSPort *)portForName:(NSString *)aPortName onHost:(NSString *)aHostName { NSAssert(aHostName == nil, @"local ports only, hostname must be nil !"); return [self notImplemented:_cmd]; } @end /* Local Variables: c-basic-offset: 4 tab-width: 8 End: */