Fixed a crash when unchecking share this player. Also trying to make the
[MenuTunes.git] / NetworkObject.h
index 2222414..0e185d4 100755 (executable)
 
 @interface NetworkObject : NSObject
 {
-    BOOL _authenticated;
+    BOOL _authenticated, _valid;
 }
 - (ITMTRemote *)remote;
 - (NSString *)serverName;
 
 - (BOOL)requiresPassword;
 - (BOOL)sendPassword:(NSData *)password;
+
+- (void)invalidate;
+- (BOOL)isValid;
 @end