annotate lisp/telnet.el @ 12313:eca218b0a8ca

(negative-argument, digit-argument): Set overriding-terminal-local-map like C-u. (universal-argument-map): Add binding for \e t.
author Richard M. Stallman <rms@gnu.org>
date Mon, 19 Jun 1995 16:15:06 +0000
parents 1c47aad4c1c7
children 83f275dcd93a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
658
7cbd4fcd8b0f *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 584
diff changeset
1 ;;; telnet.el --- run a telnet session from within an Emacs buffer
775
1ca26ccad38e *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 707
diff changeset
2
7300
cc7cd83ccf3f Update copyright.
Karl Heuer <kwzh@gnu.org>
parents: 6738
diff changeset
3 ;;; Copyright (C) 1985, 1988, 1992, 1994 Free Software Foundation, Inc.
841
2cdce064065f entered into RCS
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 775
diff changeset
4
775
1ca26ccad38e *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 707
diff changeset
5 ;; Author: William F. Schelter
1ca26ccad38e *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 707
diff changeset
6 ;; Maintainer: FSF
48
82ef7404837f Initial revision
root <root>
parents:
diff changeset
7
82ef7404837f Initial revision
root <root>
parents:
diff changeset
8 ;; This file is part of GNU Emacs.
82ef7404837f Initial revision
root <root>
parents:
diff changeset
9
82ef7404837f Initial revision
root <root>
parents:
diff changeset
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
82ef7404837f Initial revision
root <root>
parents:
diff changeset
11 ;; it under the terms of the GNU General Public License as published by
707
e4253da532fb *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 658
diff changeset
12 ;; the Free Software Foundation; either version 2, or (at your option)
48
82ef7404837f Initial revision
root <root>
parents:
diff changeset
13 ;; any later version.
82ef7404837f Initial revision
root <root>
parents:
diff changeset
14
82ef7404837f Initial revision
root <root>
parents:
diff changeset
15 ;; GNU Emacs is distributed in the hope that it will be useful,
82ef7404837f Initial revision
root <root>
parents:
diff changeset
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
82ef7404837f Initial revision
root <root>
parents:
diff changeset
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
82ef7404837f Initial revision
root <root>
parents:
diff changeset
18 ;; GNU General Public License for more details.
82ef7404837f Initial revision
root <root>
parents:
diff changeset
19
82ef7404837f Initial revision
root <root>
parents:
diff changeset
20 ;; You should have received a copy of the GNU General Public License
82ef7404837f Initial revision
root <root>
parents:
diff changeset
21 ;; along with GNU Emacs; see the file COPYING. If not, write to
82ef7404837f Initial revision
root <root>
parents:
diff changeset
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
82ef7404837f Initial revision
root <root>
parents:
diff changeset
23
2562
2715e893d220 Commentary added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1577
diff changeset
24 ;;; Commentary:
2715e893d220 Commentary added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1577
diff changeset
25
2715e893d220 Commentary added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1577
diff changeset
26 ;; This mode is intended to be used for telnet or rsh to a remode host;
2715e893d220 Commentary added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1577
diff changeset
27 ;; `telnet' and `rsh' are the two entry points. Multiple telnet or rsh
2715e893d220 Commentary added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1577
diff changeset
28 ;; sessions are supported.
2715e893d220 Commentary added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1577
diff changeset
29 ;;
2715e893d220 Commentary added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1577
diff changeset
30 ;; Normally, input is sent to the remote telnet/rsh line-by-line, as you
2715e893d220 Commentary added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1577
diff changeset
31 ;; type RET or LFD. C-c C-c sends a C-c to the remote immediately;
2715e893d220 Commentary added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1577
diff changeset
32 ;; C-c C-z sends C-z immediately. C-c C-q followed by any character
2715e893d220 Commentary added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1577
diff changeset
33 ;; sends that character immediately.
2715e893d220 Commentary added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1577
diff changeset
34 ;;
2715e893d220 Commentary added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1577
diff changeset
35 ;; All RET characters are filtered out of the output coming back from the
2715e893d220 Commentary added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1577
diff changeset
36 ;; remote system. The mode tries to do other useful translations based
2715e893d220 Commentary added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1577
diff changeset
37 ;; on what it sees coming back from the other system before the password
2715e893d220 Commentary added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1577
diff changeset
38 ;; query. It knows about UNIX, ITS, TOPS-20 and Explorer systems.
2715e893d220 Commentary added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1577
diff changeset
39
775
1ca26ccad38e *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 707
diff changeset
40 ;;; Code:
48
82ef7404837f Initial revision
root <root>
parents:
diff changeset
41
2562
2715e893d220 Commentary added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1577
diff changeset
42 ;; to do fix software types for lispm:
2715e893d220 Commentary added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1577
diff changeset
43 ;; to eval current expression. Also to try to send escape keys correctly.
2715e893d220 Commentary added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1577
diff changeset
44 ;; essentially we'll want the rubout-handler off.
48
82ef7404837f Initial revision
root <root>
parents:
diff changeset
45
82ef7404837f Initial revision
root <root>
parents:
diff changeset
46 ;; filter is simplistic but should be okay for typical shell usage.
82ef7404837f Initial revision
root <root>
parents:
diff changeset
47 ;; needs hacking if it is going to deal with asynchronous output in a sane
82ef7404837f Initial revision
root <root>
parents:
diff changeset
48 ;; manner
82ef7404837f Initial revision
root <root>
parents:
diff changeset
49
82ef7404837f Initial revision
root <root>
parents:
diff changeset
50 (require 'comint)
707
e4253da532fb *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 658
diff changeset
51
48
82ef7404837f Initial revision
root <root>
parents:
diff changeset
52 (defvar telnet-new-line "\r")
82ef7404837f Initial revision
root <root>
parents:
diff changeset
53 (defvar telnet-mode-map nil)
5273
59fee4967e01 (telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents: 5142
diff changeset
54 (defvar telnet-prompt-pattern "^[^#$%>\n]*[#$%>] *")
48
82ef7404837f Initial revision
root <root>
parents:
diff changeset
55 (defvar telnet-replace-c-g nil)
82ef7404837f Initial revision
root <root>
parents:
diff changeset
56 (make-variable-buffer-local
82ef7404837f Initial revision
root <root>
parents:
diff changeset
57 (defvar telnet-remote-echoes t
82ef7404837f Initial revision
root <root>
parents:
diff changeset
58 "True if the telnet process will echo input."))
82ef7404837f Initial revision
root <root>
parents:
diff changeset
59 (make-variable-buffer-local
82ef7404837f Initial revision
root <root>
parents:
diff changeset
60 (defvar telnet-interrupt-string "\C-c" "String sent by C-c."))
82ef7404837f Initial revision
root <root>
parents:
diff changeset
61
82ef7404837f Initial revision
root <root>
parents:
diff changeset
62 (defvar telnet-count 0
5142
2d8ae66d6906 (telnet-rsh-program): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 4828
diff changeset
63 "Number of output strings from telnet process while looking for password.")
2d8ae66d6906 (telnet-rsh-program): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 4828
diff changeset
64 (make-variable-buffer-local 'telnet-count)
2d8ae66d6906 (telnet-rsh-program): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 4828
diff changeset
65
8756
1c9ee34d9094 (telnet-program): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7300
diff changeset
66 (defvar telnet-program "telnet"
1c9ee34d9094 (telnet-program): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7300
diff changeset
67 "Program to run to open a telnet connection.")
1c9ee34d9094 (telnet-program): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7300
diff changeset
68
48
82ef7404837f Initial revision
root <root>
parents:
diff changeset
69 (defvar telnet-initial-count -50
1577
a52da8d63ff3 Doc fix.
Christopher Zaborsky <rogue@erratum.com>
parents: 1418
diff changeset
70 "Initial value of `telnet-count'. Should be set to the negative of the
48
82ef7404837f Initial revision
root <root>
parents:
diff changeset
71 number of terminal writes telnet will make setting up the host connection.")
82ef7404837f Initial revision
root <root>
parents:
diff changeset
72
82ef7404837f Initial revision
root <root>
parents:
diff changeset
73 (defvar telnet-maximum-count 4
1577
a52da8d63ff3 Doc fix.
Christopher Zaborsky <rogue@erratum.com>
parents: 1418
diff changeset
74 "Maximum value `telnet-count' can have.
48
82ef7404837f Initial revision
root <root>
parents:
diff changeset
75 After this many passes, we stop looking for initial setup data.
82ef7404837f Initial revision
root <root>
parents:
diff changeset
76 Should be set to the number of terminal writes telnet will make
6402
33dec33f382d (telnet-maximum-count): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents: 6156
diff changeset
77 rejecting one login and prompting again for a username and password.")
48
82ef7404837f Initial revision
root <root>
parents:
diff changeset
78
82ef7404837f Initial revision
root <root>
parents:
diff changeset
79 (defun telnet-interrupt-subjob ()
82ef7404837f Initial revision
root <root>
parents:
diff changeset
80 (interactive)
82ef7404837f Initial revision
root <root>
parents:
diff changeset
81 "Interrupt the program running through telnet on the remote host."
82ef7404837f Initial revision
root <root>
parents:
diff changeset
82 (send-string nil telnet-interrupt-string))
82ef7404837f Initial revision
root <root>
parents:
diff changeset
83
82ef7404837f Initial revision
root <root>
parents:
diff changeset
84 (defun telnet-c-z ()
82ef7404837f Initial revision
root <root>
parents:
diff changeset
85 (interactive)
82ef7404837f Initial revision
root <root>
parents:
diff changeset
86 (send-string nil "\C-z"))
82ef7404837f Initial revision
root <root>
parents:
diff changeset
87
82ef7404837f Initial revision
root <root>
parents:
diff changeset
88 (defun send-process-next-char ()
82ef7404837f Initial revision
root <root>
parents:
diff changeset
89 (interactive)
82ef7404837f Initial revision
root <root>
parents:
diff changeset
90 (send-string nil
82ef7404837f Initial revision
root <root>
parents:
diff changeset
91 (char-to-string
82ef7404837f Initial revision
root <root>
parents:
diff changeset
92 (let ((inhibit-quit t))
82ef7404837f Initial revision
root <root>
parents:
diff changeset
93 (prog1 (read-char)
82ef7404837f Initial revision
root <root>
parents:
diff changeset
94 (setq quit-flag nil))))))
82ef7404837f Initial revision
root <root>
parents:
diff changeset
95
82ef7404837f Initial revision
root <root>
parents:
diff changeset
96 ; initialization on first load.
82ef7404837f Initial revision
root <root>
parents:
diff changeset
97 (if telnet-mode-map
82ef7404837f Initial revision
root <root>
parents:
diff changeset
98 nil
8887
9a6dc53633aa (telnet-mode-map): Inherit from comint-mode-map.
Richard M. Stallman <rms@gnu.org>
parents: 8876
diff changeset
99 (setq telnet-mode-map (nconc (make-sparse-keymap) comint-mode-map))
48
82ef7404837f Initial revision
root <root>
parents:
diff changeset
100 (define-key telnet-mode-map "\C-m" 'telnet-send-input)
82ef7404837f Initial revision
root <root>
parents:
diff changeset
101 ; (define-key telnet-mode-map "\C-j" 'telnet-send-input)
82ef7404837f Initial revision
root <root>
parents:
diff changeset
102 (define-key telnet-mode-map "\C-c\C-q" 'send-process-next-char)
82ef7404837f Initial revision
root <root>
parents:
diff changeset
103 (define-key telnet-mode-map "\C-c\C-c" 'telnet-interrupt-subjob)
82ef7404837f Initial revision
root <root>
parents:
diff changeset
104 (define-key telnet-mode-map "\C-c\C-z" 'telnet-c-z))
82ef7404837f Initial revision
root <root>
parents:
diff changeset
105
82ef7404837f Initial revision
root <root>
parents:
diff changeset
106 ;;maybe should have a flag for when have found type
82ef7404837f Initial revision
root <root>
parents:
diff changeset
107 (defun telnet-check-software-type-initialize (string)
82ef7404837f Initial revision
root <root>
parents:
diff changeset
108 "Tries to put correct initializations in. Needs work."
82ef7404837f Initial revision
root <root>
parents:
diff changeset
109 (let ((case-fold-search t))
82ef7404837f Initial revision
root <root>
parents:
diff changeset
110 (cond ((string-match "unix" string)
82ef7404837f Initial revision
root <root>
parents:
diff changeset
111 (setq telnet-prompt-pattern comint-prompt-regexp)
82ef7404837f Initial revision
root <root>
parents:
diff changeset
112 (setq telnet-new-line "\n"))
82ef7404837f Initial revision
root <root>
parents:
diff changeset
113 ((string-match "tops-20" string) ;;maybe add telnet-replace-c-g
82ef7404837f Initial revision
root <root>
parents:
diff changeset
114 (setq telnet-prompt-pattern "[@>]*"))
82ef7404837f Initial revision
root <root>
parents:
diff changeset
115 ((string-match "its" string)
5273
59fee4967e01 (telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents: 5142
diff changeset
116 (setq telnet-prompt-pattern "^[^*>\n]*[*>] *"))
48
82ef7404837f Initial revision
root <root>
parents:
diff changeset
117 ((string-match "explorer" string) ;;explorer telnet needs work
82ef7404837f Initial revision
root <root>
parents:
diff changeset
118 (setq telnet-replace-c-g ?\n))))
82ef7404837f Initial revision
root <root>
parents:
diff changeset
119 (setq comint-prompt-regexp telnet-prompt-pattern))
82ef7404837f Initial revision
root <root>
parents:
diff changeset
120
82ef7404837f Initial revision
root <root>
parents:
diff changeset
121 (defun telnet-initial-filter (proc string)
82ef7404837f Initial revision
root <root>
parents:
diff changeset
122 ;For reading up to and including password; also will get machine type.
82ef7404837f Initial revision
root <root>
parents:
diff changeset
123 (cond ((string-match "No such host" string)
82ef7404837f Initial revision
root <root>
parents:
diff changeset
124 (kill-buffer (process-buffer proc))
82ef7404837f Initial revision
root <root>
parents:
diff changeset
125 (error "No such host."))
82ef7404837f Initial revision
root <root>
parents:
diff changeset
126 ((string-match "passw" string)
82ef7404837f Initial revision
root <root>
parents:
diff changeset
127 (telnet-filter proc string)
6738
91a5e1cd14c7 (telnet-initial-filter, read-password): Don't unnecessarily duplicate comint
Karl Heuer <kwzh@gnu.org>
parents: 6402
diff changeset
128 (setq telnet-count 0)
91a5e1cd14c7 (telnet-initial-filter, read-password): Don't unnecessarily duplicate comint
Karl Heuer <kwzh@gnu.org>
parents: 6402
diff changeset
129 (send-string proc (concat (comint-read-noecho "Password: " t)
91a5e1cd14c7 (telnet-initial-filter, read-password): Don't unnecessarily duplicate comint
Karl Heuer <kwzh@gnu.org>
parents: 6402
diff changeset
130 telnet-new-line)))
48
82ef7404837f Initial revision
root <root>
parents:
diff changeset
131 (t (telnet-check-software-type-initialize string)
82ef7404837f Initial revision
root <root>
parents:
diff changeset
132 (telnet-filter proc string)
82ef7404837f Initial revision
root <root>
parents:
diff changeset
133 (cond ((> telnet-count telnet-maximum-count)
82ef7404837f Initial revision
root <root>
parents:
diff changeset
134 (set-process-filter proc 'telnet-filter))
82ef7404837f Initial revision
root <root>
parents:
diff changeset
135 (t (setq telnet-count (1+ telnet-count)))))))
82ef7404837f Initial revision
root <root>
parents:
diff changeset
136
3562
ec0c98304624 (telnet-simple-send): New function.
Richard M. Stallman <rms@gnu.org>
parents: 2562
diff changeset
137 ;; Identical to comint-simple-send, except that it sends telnet-new-line
ec0c98304624 (telnet-simple-send): New function.
Richard M. Stallman <rms@gnu.org>
parents: 2562
diff changeset
138 ;; instead of "\n".
ec0c98304624 (telnet-simple-send): New function.
Richard M. Stallman <rms@gnu.org>
parents: 2562
diff changeset
139 (defun telnet-simple-send (proc string)
ec0c98304624 (telnet-simple-send): New function.
Richard M. Stallman <rms@gnu.org>
parents: 2562
diff changeset
140 (comint-send-string proc string)
ec0c98304624 (telnet-simple-send): New function.
Richard M. Stallman <rms@gnu.org>
parents: 2562
diff changeset
141 (comint-send-string proc telnet-new-line))
ec0c98304624 (telnet-simple-send): New function.
Richard M. Stallman <rms@gnu.org>
parents: 2562
diff changeset
142
48
82ef7404837f Initial revision
root <root>
parents:
diff changeset
143 (defun telnet-filter (proc string)
5273
59fee4967e01 (telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents: 5142
diff changeset
144 (save-excursion
59fee4967e01 (telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents: 5142
diff changeset
145 (set-buffer (process-buffer proc))
59fee4967e01 (telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents: 5142
diff changeset
146 (let* ((last-insertion (marker-position (process-mark proc)))
59fee4967e01 (telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents: 5142
diff changeset
147 (delta (- (point) last-insertion))
59fee4967e01 (telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents: 5142
diff changeset
148 (ie (and comint-last-input-end
59fee4967e01 (telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents: 5142
diff changeset
149 (marker-position comint-last-input-end)))
59fee4967e01 (telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents: 5142
diff changeset
150 (w (get-buffer-window (current-buffer)))
59fee4967e01 (telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents: 5142
diff changeset
151 (ws (and w (window-start w))))
59fee4967e01 (telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents: 5142
diff changeset
152 (goto-char last-insertion)
59fee4967e01 (telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents: 5142
diff changeset
153 (insert-before-markers string)
59fee4967e01 (telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents: 5142
diff changeset
154 (set-marker (process-mark proc) (point))
59fee4967e01 (telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents: 5142
diff changeset
155 (if ws (set-window-start w ws t))
59fee4967e01 (telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents: 5142
diff changeset
156 (if ie (set-marker comint-last-input-end ie))
59fee4967e01 (telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents: 5142
diff changeset
157 (while (progn (skip-chars-backward "^\C-m" last-insertion)
59fee4967e01 (telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents: 5142
diff changeset
158 (> (point) last-insertion))
59fee4967e01 (telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents: 5142
diff changeset
159 (delete-region (1- (point)) (point)))
48
82ef7404837f Initial revision
root <root>
parents:
diff changeset
160 (goto-char (process-mark proc))
5273
59fee4967e01 (telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents: 5142
diff changeset
161 (and telnet-replace-c-g
59fee4967e01 (telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents: 5142
diff changeset
162 (subst-char-in-region last-insertion (point) ?\C-g
59fee4967e01 (telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents: 5142
diff changeset
163 telnet-replace-c-g t))
59fee4967e01 (telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents: 5142
diff changeset
164 ;; If point is after the insertion place, move it
59fee4967e01 (telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents: 5142
diff changeset
165 ;; along with the text.
59fee4967e01 (telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents: 5142
diff changeset
166 (if (> delta 0)
59fee4967e01 (telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents: 5142
diff changeset
167 (goto-char (+ (process-mark proc) delta))))))
48
82ef7404837f Initial revision
root <root>
parents:
diff changeset
168
82ef7404837f Initial revision
root <root>
parents:
diff changeset
169 (defun telnet-send-input ()
82ef7404837f Initial revision
root <root>
parents:
diff changeset
170 (interactive)
707
e4253da532fb *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 658
diff changeset
171 ; (comint-send-input telnet-new-line telnet-remote-echoes)
e4253da532fb *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 658
diff changeset
172 (comint-send-input)
e4253da532fb *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 658
diff changeset
173 (if telnet-remote-echoes
e4253da532fb *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 658
diff changeset
174 (delete-region comint-last-input-start
e4253da532fb *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 658
diff changeset
175 comint-last-input-end)))
48
82ef7404837f Initial revision
root <root>
parents:
diff changeset
176
10980
aa3f323f1dea Fix typos in previous change.
Richard M. Stallman <rms@gnu.org>
parents: 10979
diff changeset
177 ;;;###autoload (add-hook 'same-window-regexps "\\*telnet-.*\\*\\(\\|<[0-9]+>\\)")
10979
a3de1a78a79f (rsh, telnet): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 10452
diff changeset
178
258
1e0bc00dca7a *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 48
diff changeset
179 ;;;###autoload
4432
f00905dd8a41 (telnet): If we already have a telnet to HOST, just switch buffers.
Richard M. Stallman <rms@gnu.org>
parents: 3562
diff changeset
180 (defun telnet (host)
48
82ef7404837f Initial revision
root <root>
parents:
diff changeset
181 "Open a network login connection to host named HOST (a string).
8876
1f90adde8d6c (telnet): Use name *telnet-HOST*, not *HOST-telnet*.
Richard M. Stallman <rms@gnu.org>
parents: 8756
diff changeset
182 Communication with HOST is recorded in a buffer `*telnet-HOST*'.
48
82ef7404837f Initial revision
root <root>
parents:
diff changeset
183 Normally input is edited in Emacs and sent a line at a time."
82ef7404837f Initial revision
root <root>
parents:
diff changeset
184 (interactive "sOpen telnet connection to host: ")
6156
3aafcde7e7c4 (telnet): Use chars in comint-delimiter-argument-list.
Richard M. Stallman <rms@gnu.org>
parents: 5549
diff changeset
185 (let* ((comint-delimiter-argument-list '(?\ ?\t))
8876
1f90adde8d6c (telnet): Use name *telnet-HOST*, not *HOST-telnet*.
Richard M. Stallman <rms@gnu.org>
parents: 8756
diff changeset
186 (name (concat "telnet-" (comint-arguments host 0 nil) ))
10129
c2fa03370e73 (telnet): Don't make assumptions about process name.
Richard M. Stallman <rms@gnu.org>
parents: 8887
diff changeset
187 (buffer (get-buffer (concat "*" name "*")))
c2fa03370e73 (telnet): Don't make assumptions about process name.
Richard M. Stallman <rms@gnu.org>
parents: 8887
diff changeset
188 process)
4432
f00905dd8a41 (telnet): If we already have a telnet to HOST, just switch buffers.
Richard M. Stallman <rms@gnu.org>
parents: 3562
diff changeset
189 (if (and buffer (get-buffer-process buffer))
10979
a3de1a78a79f (rsh, telnet): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 10452
diff changeset
190 (pop-to-buffer (concat "*" name "*"))
a3de1a78a79f (rsh, telnet): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 10452
diff changeset
191 (pop-to-buffer (make-comint name telnet-program))
10129
c2fa03370e73 (telnet): Don't make assumptions about process name.
Richard M. Stallman <rms@gnu.org>
parents: 8887
diff changeset
192 (setq process (get-buffer-process (current-buffer)))
c2fa03370e73 (telnet): Don't make assumptions about process name.
Richard M. Stallman <rms@gnu.org>
parents: 8887
diff changeset
193 (set-process-filter process 'telnet-initial-filter)
4432
f00905dd8a41 (telnet): If we already have a telnet to HOST, just switch buffers.
Richard M. Stallman <rms@gnu.org>
parents: 3562
diff changeset
194 ;; Don't send the `open' cmd till telnet is ready for it.
10129
c2fa03370e73 (telnet): Don't make assumptions about process name.
Richard M. Stallman <rms@gnu.org>
parents: 8887
diff changeset
195 (accept-process-output process)
4432
f00905dd8a41 (telnet): If we already have a telnet to HOST, just switch buffers.
Richard M. Stallman <rms@gnu.org>
parents: 3562
diff changeset
196 (erase-buffer)
10129
c2fa03370e73 (telnet): Don't make assumptions about process name.
Richard M. Stallman <rms@gnu.org>
parents: 8887
diff changeset
197 (send-string process (concat "open " host "\n"))
4432
f00905dd8a41 (telnet): If we already have a telnet to HOST, just switch buffers.
Richard M. Stallman <rms@gnu.org>
parents: 3562
diff changeset
198 (telnet-mode)
f00905dd8a41 (telnet): If we already have a telnet to HOST, just switch buffers.
Richard M. Stallman <rms@gnu.org>
parents: 3562
diff changeset
199 (setq comint-input-sender 'telnet-simple-send)
f00905dd8a41 (telnet): If we already have a telnet to HOST, just switch buffers.
Richard M. Stallman <rms@gnu.org>
parents: 3562
diff changeset
200 (setq telnet-count telnet-initial-count))))
48
82ef7404837f Initial revision
root <root>
parents:
diff changeset
201
82ef7404837f Initial revision
root <root>
parents:
diff changeset
202 (defun telnet-mode ()
2562
2715e893d220 Commentary added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1577
diff changeset
203 "This mode is for using telnet (or rsh) from a buffer to another host.
1577
a52da8d63ff3 Doc fix.
Christopher Zaborsky <rogue@erratum.com>
parents: 1418
diff changeset
204 It has most of the same commands as comint-mode.
48
82ef7404837f Initial revision
root <root>
parents:
diff changeset
205 There is a variable ``telnet-interrupt-string'' which is the character
82ef7404837f Initial revision
root <root>
parents:
diff changeset
206 sent to try to stop execution of a job on the remote host.
82ef7404837f Initial revision
root <root>
parents:
diff changeset
207 Data is sent to the remote host when RET is typed.
82ef7404837f Initial revision
root <root>
parents:
diff changeset
208
82ef7404837f Initial revision
root <root>
parents:
diff changeset
209 \\{telnet-mode-map}
2562
2715e893d220 Commentary added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1577
diff changeset
210 "
48
82ef7404837f Initial revision
root <root>
parents:
diff changeset
211 (interactive)
82ef7404837f Initial revision
root <root>
parents:
diff changeset
212 (comint-mode)
82ef7404837f Initial revision
root <root>
parents:
diff changeset
213 (setq major-mode 'telnet-mode
82ef7404837f Initial revision
root <root>
parents:
diff changeset
214 mode-name "Telnet"
82ef7404837f Initial revision
root <root>
parents:
diff changeset
215 comint-prompt-regexp telnet-prompt-pattern)
82ef7404837f Initial revision
root <root>
parents:
diff changeset
216 (use-local-map telnet-mode-map)
82ef7404837f Initial revision
root <root>
parents:
diff changeset
217 (run-hooks 'telnet-mode-hook))
82ef7404837f Initial revision
root <root>
parents:
diff changeset
218
10987
1c47aad4c1c7 (rsh): Name the buffer *rsh-HOST*.
Richard M. Stallman <rms@gnu.org>
parents: 10980
diff changeset
219 ;;;###autoload (add-hook 'same-window-regexps "\\*rsh-[^-]*\\*\\(\\|<[0-9]*>\\)")
10979
a3de1a78a79f (rsh, telnet): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 10452
diff changeset
220
2562
2715e893d220 Commentary added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1577
diff changeset
221 ;;;###autoload
4432
f00905dd8a41 (telnet): If we already have a telnet to HOST, just switch buffers.
Richard M. Stallman <rms@gnu.org>
parents: 3562
diff changeset
222 (defun rsh (host)
2562
2715e893d220 Commentary added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1577
diff changeset
223 "Open a network login connection to host named HOST (a string).
10987
1c47aad4c1c7 (rsh): Name the buffer *rsh-HOST*.
Richard M. Stallman <rms@gnu.org>
parents: 10980
diff changeset
224 Communication with HOST is recorded in a buffer `*rsh-HOST*'.
2562
2715e893d220 Commentary added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1577
diff changeset
225 Normally input is edited in Emacs and sent a line at a time."
2715e893d220 Commentary added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1577
diff changeset
226 (interactive "sOpen rsh connection to host: ")
2715e893d220 Commentary added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1577
diff changeset
227 (require 'shell)
10987
1c47aad4c1c7 (rsh): Name the buffer *rsh-HOST*.
Richard M. Stallman <rms@gnu.org>
parents: 10980
diff changeset
228 (let ((name (concat "rsh-" host )))
10979
a3de1a78a79f (rsh, telnet): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 10452
diff changeset
229 (pop-to-buffer (make-comint name remote-shell-program nil host))
2562
2715e893d220 Commentary added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1577
diff changeset
230 (set-process-filter (get-process name) 'telnet-initial-filter)
2715e893d220 Commentary added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1577
diff changeset
231 (telnet-mode)
2715e893d220 Commentary added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1577
diff changeset
232 (setq telnet-count -16)))
2715e893d220 Commentary added.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1577
diff changeset
233
584
4cd7543be581 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 557
diff changeset
234 (provide 'telnet)
4cd7543be581 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 557
diff changeset
235
658
7cbd4fcd8b0f *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 584
diff changeset
236 ;;; telnet.el ends here