ftp.nice.ch/pub/next/connectivity/conferences/Converse.1.0.NIHS.bs.tar.gz#/Converse/Source/Communication.m

This is Communication.m in view mode; [Download] [Up]

//** Craig Laurent
#import "Communication.h"
#import "MessageProtocol.h"
#import "Converse.h"
#import "User.h"
//** SERVERNAME used in Communication and Converse
#define SERVERNAME "ConverseCommunicationServer"

@implementation Communication

//** Communications SERVER!! *****


//****************************************
- init
{
	return [self initWithCtlr:nil];
}

//** designated initializer
- initWithCtlr:ctlr
{
	if (self = [super init]) {
		[self setController:ctlr];
		return self;
	}
	return nil;
}

- (void)dealloc
{
	[super dealloc];
}


//****************************************
//** instance methods
- (Converse*)controller
{	return controller; }
- (void)setController:(Converse*)ctlr
{
	controller = ctlr;
}


//****************************************
//** methods
/* postMessage: - post message to another machine, indicating who sent it. */
- (oneway void)postMessage:(bycopy in const char *)msg fromAuthor:(bycopy in User*)author
{
	[[self controller] logMessage:[NSString stringWithCString:msg] fromAuthor:author alert:YES];
}

/* author - pass the user information to a requesting machine. */
- (bycopy User*)author
{
	return [[self controller] userInfo];
}


//** create list of machines running this application on the network
- createNetworkNameList:nameList forMachine:(const char *)originator
{
//** future enhancement
	return self;
}


@end

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.