summaryrefslogtreecommitdiff
path: root/channels.h
diff options
context:
space:
mode:
Diffstat (limited to 'channels.h')
-rw-r--r--channels.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/channels.h b/channels.h
index 5e030a44b..abd719042 100644
--- a/channels.h
+++ b/channels.h
@@ -32,7 +32,7 @@
32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
33 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 33 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 */ 34 */
35/* RCSID("$OpenBSD: channels.h,v 1.25 2001/01/29 16:55:36 markus Exp $"); */ 35/* RCSID("$OpenBSD: channels.h,v 1.26 2001/01/31 20:37:23 markus Exp $"); */
36 36
37#ifndef CHANNELS_H 37#ifndef CHANNELS_H
38#define CHANNELS_H 38#define CHANNELS_H
@@ -206,10 +206,10 @@ char *channel_open_message(void);
206 * Initiate forwarding of connections to local port "port" through the secure 206 * Initiate forwarding of connections to local port "port" through the secure
207 * channel to host:port from remote side. 207 * channel to host:port from remote side.
208 */ 208 */
209void 209int
210channel_request_local_forwarding(u_short listen_port, 210channel_request_local_forwarding(u_short listen_port,
211 const char *host_to_connect, u_short port_to_connect, int gateway_ports); 211 const char *host_to_connect, u_short port_to_connect, int gateway_ports);
212void 212int
213channel_request_forwarding(const char *listen_address, u_short listen_port, 213channel_request_forwarding(const char *listen_address, u_short listen_port,
214 const char *host_to_connect, u_short port_to_connect, int gateway_ports, 214 const char *host_to_connect, u_short port_to_connect, int gateway_ports,
215 int remote_fwd); 215 int remote_fwd);