blob: 35ce87b770cce03c2c7f36db945a35d40ec0ebc9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ptp.remotetools.internal.ssh;
import java.util.concurrent.locks.ReentrantLock;
import sun.awt.datatransfer.DataTransferer.ReencodingInputStream;
public class ConnectionLocks {
protected ReentrantLock remotePortForwarding = new ReentrantLock();
protected ReentrantLock localPortForwarding = new ReentrantLock();
}