Skip to content

Commit e4e4090

Browse files
committed
update.
1 parent 277ec56 commit e4e4090

File tree

3 files changed

+1
-9
lines changed

3 files changed

+1
-9
lines changed

connect.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ func RequestTty(session *ssh.Session) (err error) {
212212
return
213213
}
214214

215-
// TODO(blacknon): 環境変数から取得する方式だと、Windowsでうまく動作するか不明なので確認して対処する
215+
// Get env `TERM`
216216
term := os.Getenv("TERM")
217217
if len(term) == 0 {
218218
term = "xterm"

forward.go

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
// Use of this source code is governed by an MIT license
33
// that can be found in the LICENSE file.
44

5-
// TODO(blacknon): Dynamic Port forwardingと同じような感じでhttp proxyを生やす関数を追加
6-
75
package sshlib
86

97
import (
@@ -339,10 +337,6 @@ func (c *Connect) TCPDynamicForward(address, port string) (err error) {
339337
return
340338
}
341339

342-
// TODO(blacknon):
343-
// OpenSsh独自の実装っぽいので、追加はちょっと厳しいかも?
344-
// とりあえず調べてみる。
345-
//
346340
// TCPReverseDynamicForward reverse forwarding tcp data.
347341
// Like Openssh Reverse Dynamic forward (`ssh -R <port>`).
348342
func (c *Connect) TCPReverseDynamicForward(address, port string) (err error) {

shell.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
// Use of this source code is governed by an MIT license
33
// that can be found in the LICENSE file.
44

5-
// TODO(blacknon): Windowsでもshellを使えるようにする(どうやってやるのかは不明)
6-
75
package sshlib
86

97
import (

0 commit comments

Comments
 (0)