#define SERVER_PORT 5712
-@class ITMTRemote;
+@class NetworkObject;
@interface NetworkController : NSObject
{
NSMutableArray *remoteServices;
NSConnection *serverConnection, *clientConnection;
- NSSocketPort *serverPort, *clientPort;
+ NSSocketPort *clientPort;
NSString *remoteHost;
BOOL serverOn, clientConnected, connectedToServer;
NSData *serverPass, *clientPass;
- ITMTRemote *clientProxy;
+ NetworkObject *clientProxy;
}
+ (NetworkController *)sharedController;
- (void)stopRemoteServerSearch;
- (void)setServerStatus:(BOOL)status;
-- (BOOL)connectToHost:(NSString *)host;
+- (int)connectToHost:(NSString *)host;
- (BOOL)checkForServerAtHost:(NSString *)host;
- (BOOL)disconnect;
- (BOOL)isServerOn;
- (BOOL)isConnectedToServer;
- (NSString *)remoteHost;
-- (ITMTRemote *)sharedRemote;
+- (NetworkObject *)networkObject;
- (NSArray *)remoteServices;
@end