//
//  Authenticate.h
//  Connection
//
//  Created by H. Nikolaus Schaller on 23.10.09.
//  Copyright 2009 Golden Delicious Computers GmbH&Co. KG. All rights reserved.
//

#if 0

- (BOOL) authenticateComponents:(NSArray *) components withData:(NSData *) authenticationData;
{
	NSLog(@"authenticateComponents: %@ withData: %@", components, authenticationData);
	return YES;
}

- (NSData *) authenticationDataForComponents:(NSArray *) components;
{
	// [components indexAtObject:0] is NSData with portencoded contents
	// [components indexAtObject:1] is the port (?)
	NSLog(@"authenticationDataForComponents: %@", components);
	return [NSData data];	// no authentication
}

#endif
