Changeset 50

Show
Ignore:
Timestamp:
05/19/05 22:10:04 (4 years ago)
Author:
bart
Message:

Fixed a bug in Remote Tunnel handling

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/TunnelController.m

    r41 r50  
    501501                for(i=0; i < [[dict objectForKey:@"RemotePortForwards"] count]; i++) 
    502502                { 
    503                         [tunnel addRemotePortForwardWithPort:[[[[dict objectForKey:@"LocalPortForwards"] objectAtIndex:i] objectForKey:@"RemotePort"] intValue] 
    504                                                 localHost:[[[dict objectForKey:@"LocalPortForwards"] objectAtIndex:i] objectForKey:@"LocalHost"] 
    505                                                 localPort:[[[[dict objectForKey:@"LocalPortForwards"] objectAtIndex:i] objectForKey:@"LocalPort"] intValue] 
     503                        [tunnel addRemotePortForwardWithPort:[[[[dict objectForKey:@"RemotePortForwards"] objectAtIndex:i] objectForKey:@"RemotePort"] intValue] 
     504                                                localHost:[[[dict objectForKey:@"RemotePortForwards"] objectAtIndex:i] objectForKey:@"LocalHost"] 
     505                                                localPort:[[[[dict objectForKey:@"RemotePortForwards"] objectAtIndex:i] objectForKey:@"LocalPort"] intValue] 
    506506                        ]; 
    507507                }