• 老广's avatar
    Dev (#104) · d3f159c0
    老广 authored
    * fix SecureFX SFTP connection issues (#99)
    
    * echo CORE_HOST value when jms_core not ready (#101)
    
    * increase timeout seconds (#102)
    
    * Add log info messages
    d3f159c0
userconn.go 213 Bytes
package proxy

import (
	"io"

	"github.com/gliderlabs/ssh"
)

type UserConnection interface {
	io.ReadWriteCloser
	ID() string
	WinCh() <-chan ssh.Window
	LoginFrom() string
	RemoteAddr() string
	Pty() ssh.Pty
}