Mercurial > emacs
annotate lisp/net/net-utils.el @ 39154:f42d47b9353b
*** empty log message ***
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Thu, 06 Sep 2001 08:25:53 +0000 |
parents | b174db545cfd |
children | 0605a90581d4 |
rev | line source |
---|---|
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
36225
diff
changeset
|
1 ;;; net-utils.el --- network functions |
28210 | 2 |
36225 | 3 ;; Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc. |
4 | |
28210 | 5 ;; Author: Peter Breton <pbreton@cs.umb.edu> |
6 ;; Created: Sun Mar 16 1997 | |
7 ;; Keywords: network communications | |
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
36225
diff
changeset
|
8 ;; Time-stamp: <2001-07-15 00:34:52 pavel> |
28210 | 9 |
10 ;; This file is part of GNU Emacs. | |
11 | |
12 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
13 ;; it under the terms of the GNU General Public License as published by | |
14 ;; the Free Software Foundation; either version 2, or (at your option) | |
15 ;; any later version. | |
16 | |
17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 ;; GNU General Public License for more details. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
25 ;; Boston, MA 02111-1307, USA. | |
26 | |
27 ;;; Commentary: | |
28 ;; | |
29 ;; There are three main areas of functionality: | |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
30 ;; |
28210 | 31 ;; * Wrap common network utility programs (ping, traceroute, netstat, |
32 ;; nslookup, arp, route). Note that these wrappers are of the diagnostic | |
33 ;; functions of these programs only. | |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
34 ;; |
28210 | 35 ;; * Implement some very basic protocols in Emacs Lisp (finger and whois) |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
36 ;; |
28210 | 37 ;; * Support connections to HOST/PORT, generally for debugging and the like. |
38 ;; In other words, for doing much the same thing as "telnet HOST PORT", and | |
39 ;; then typing commands. | |
40 ;; | |
41 ;; PATHS | |
42 ;; | |
43 ;; On some systems, some of these programs are not in normal user path, | |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
44 ;; but rather in /sbin, /usr/sbin, and so on. |
28210 | 45 |
46 | |
47 ;;; Code: | |
48 (eval-when-compile | |
49 (require 'comint)) | |
50 | |
51 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
52 ;; Customization Variables | |
53 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
54 | |
55 (defgroup net-utils nil | |
56 "Network utility functions." | |
57 :prefix "net-utils-" | |
58 :group 'comm | |
59 :version "20.3" | |
60 ) | |
61 | |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
62 (defcustom net-utils-remove-ctl-m |
28210 | 63 (member system-type (list 'windows-nt 'msdos)) |
64 "If non-nil, remove control-Ms from output." | |
65 :group 'net-utils | |
66 :type 'boolean | |
67 ) | |
68 | |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
69 (defcustom traceroute-program |
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
70 (if (eq system-type 'windows-nt) |
28210 | 71 "tracert" |
72 "traceroute") | |
73 "Program to trace network hops to a destination." | |
74 :group 'net-utils | |
75 :type 'string | |
76 ) | |
77 | |
78 (defcustom traceroute-program-options nil | |
79 "Options for the traceroute program." | |
80 :group 'net-utils | |
81 :type '(repeat string) | |
82 ) | |
83 | |
84 (defcustom ping-program "ping" | |
85 "Program to send network test packets to a host." | |
86 :group 'net-utils | |
87 :type 'string | |
88 ) | |
89 | |
90 ;; On Linux and Irix, the system's ping program seems to send packets | |
91 ;; indefinitely unless told otherwise | |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
92 (defcustom ping-program-options |
28210 | 93 (and (memq system-type (list 'linux 'gnu/linux 'irix)) |
94 (list "-c" "4")) | |
95 "Options for the ping program. | |
96 These options can be used to limit how many ICMP packets are emitted." | |
97 :group 'net-utils | |
98 :type '(repeat string) | |
99 ) | |
100 | |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
101 (defcustom ipconfig-program |
28210 | 102 (if (eq system-type 'windows-nt) |
103 "ipconfig" | |
104 "ifconfig") | |
105 "Program to print network configuration information." | |
106 :group 'net-utils | |
107 :type 'string | |
108 ) | |
109 | |
110 (defcustom ipconfig-program-options | |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
111 (list |
28210 | 112 (if (eq system-type 'windows-nt) |
113 "/all" "-a")) | |
114 "Options for ipconfig-program." | |
115 :group 'net-utils | |
116 :type '(repeat string) | |
117 ) | |
118 | |
119 (defcustom netstat-program "netstat" | |
120 "Program to print network statistics." | |
121 :group 'net-utils | |
122 :type 'string | |
123 ) | |
124 | |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
125 (defcustom netstat-program-options |
28210 | 126 (list "-a") |
127 "Options for netstat-program." | |
128 :group 'net-utils | |
129 :type '(repeat string) | |
130 ) | |
131 | |
132 (defcustom arp-program "arp" | |
133 "Program to print IP to address translation tables." | |
134 :group 'net-utils | |
135 :type 'string | |
136 ) | |
137 | |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
138 (defcustom arp-program-options |
28210 | 139 (list "-a") |
140 "Options for arp-program." | |
141 :group 'net-utils | |
142 :type '(repeat string) | |
143 ) | |
144 | |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
145 (defcustom route-program |
28210 | 146 (if (eq system-type 'windows-nt) |
147 "route" | |
148 "netstat") | |
149 "Program to print routing tables." | |
150 :group 'net-utils | |
151 :type 'string | |
152 ) | |
153 | |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
154 (defcustom route-program-options |
28210 | 155 (if (eq system-type 'windows-nt) |
156 (list "print") | |
157 (list "-r")) | |
158 "Options for route-program." | |
159 :group 'net-utils | |
160 :type '(repeat string) | |
161 ) | |
162 | |
163 (defcustom nslookup-program "nslookup" | |
164 "Program to interactively query DNS information." | |
165 :group 'net-utils | |
166 :type 'string | |
167 ) | |
168 | |
169 (defcustom nslookup-program-options nil | |
170 "List of options to pass to the nslookup program." | |
171 :group 'net-utils | |
172 :type '(repeat string) | |
173 ) | |
174 | |
175 (defcustom nslookup-prompt-regexp "^> " | |
32197
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
176 "Regexp to match the nslookup prompt. |
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
177 |
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
178 This variable is only used if the variable |
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
179 `comint-use-prompt-regexp-instead-of-fields' is non-nil." |
28210 | 180 :group 'net-utils |
181 :type 'regexp | |
182 ) | |
183 | |
184 (defcustom dig-program "dig" | |
185 "Program to query DNS information." | |
186 :group 'net-utils | |
187 :type 'string | |
188 ) | |
189 | |
190 (defcustom ftp-program "ftp" | |
191 "Progam to run to do FTP transfers." | |
192 :group 'net-utils | |
193 :type 'string | |
194 ) | |
195 | |
196 (defcustom ftp-program-options nil | |
197 "List of options to pass to the FTP program." | |
198 :group 'net-utils | |
199 :type '(repeat string) | |
200 ) | |
201 | |
202 (defcustom ftp-prompt-regexp "^ftp>" | |
32197
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
203 "Regexp which matches the FTP program's prompt. |
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
204 |
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
205 This variable is only used if the variable |
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
206 `comint-use-prompt-regexp-instead-of-fields' is non-nil." |
28210 | 207 :group 'net-utils |
208 :type 'regexp | |
209 ) | |
210 | |
211 (defcustom smbclient-program "smbclient" | |
212 "Smbclient program." | |
213 :group 'net-utils | |
214 :type 'string | |
215 ) | |
216 | |
217 (defcustom smbclient-program-options nil | |
218 "List of options to pass to the smbclient program." | |
219 :group 'net-utils | |
220 :type '(repeat string) | |
221 ) | |
222 | |
223 (defcustom smbclient-prompt-regexp "^smb: \>" | |
32197
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
224 "Regexp which matches the smbclient program's prompt. |
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
225 |
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
226 This variable is only used if the variable |
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
227 `comint-use-prompt-regexp-instead-of-fields' is non-nil." |
28210 | 228 :group 'net-utils |
229 :type 'regexp | |
230 ) | |
231 | |
28419
fed834403704
network-connection-mode is derived from comint-mode
Peter Breton <pbreton@attbi.com>
parents:
28210
diff
changeset
|
232 ;; Internal variables |
fed834403704
network-connection-mode is derived from comint-mode
Peter Breton <pbreton@attbi.com>
parents:
28210
diff
changeset
|
233 (defvar network-connection-service nil) |
fed834403704
network-connection-mode is derived from comint-mode
Peter Breton <pbreton@attbi.com>
parents:
28210
diff
changeset
|
234 (defvar network-connection-host nil) |
fed834403704
network-connection-mode is derived from comint-mode
Peter Breton <pbreton@attbi.com>
parents:
28210
diff
changeset
|
235 |
28210 | 236 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
237 ;; Nslookup goodies | |
238 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
239 | |
240 (defconst nslookup-font-lock-keywords | |
32158
b048135b76bc
(nslookup-font-lock-keywords, ftp-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
32123
diff
changeset
|
241 (progn |
b048135b76bc
(nslookup-font-lock-keywords, ftp-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
32123
diff
changeset
|
242 (require 'font-lock) |
b048135b76bc
(nslookup-font-lock-keywords, ftp-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
32123
diff
changeset
|
243 (list |
b048135b76bc
(nslookup-font-lock-keywords, ftp-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
32123
diff
changeset
|
244 (list "^[A-Za-z0-9 _]+:" 0 font-lock-type-face) |
b048135b76bc
(nslookup-font-lock-keywords, ftp-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
32123
diff
changeset
|
245 (list "\\<\\(SOA\\|NS\\|MX\\|A\\|CNAME\\)\\>" |
b048135b76bc
(nslookup-font-lock-keywords, ftp-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
32123
diff
changeset
|
246 1 font-lock-keyword-face) |
b048135b76bc
(nslookup-font-lock-keywords, ftp-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
32123
diff
changeset
|
247 ;; Dotted quads |
b048135b76bc
(nslookup-font-lock-keywords, ftp-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
32123
diff
changeset
|
248 (list |
b048135b76bc
(nslookup-font-lock-keywords, ftp-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
32123
diff
changeset
|
249 (mapconcat 'identity |
b048135b76bc
(nslookup-font-lock-keywords, ftp-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
32123
diff
changeset
|
250 (make-list 4 "[0-9]+") |
b048135b76bc
(nslookup-font-lock-keywords, ftp-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
32123
diff
changeset
|
251 "\\.") |
b048135b76bc
(nslookup-font-lock-keywords, ftp-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
32123
diff
changeset
|
252 0 font-lock-variable-name-face) |
b048135b76bc
(nslookup-font-lock-keywords, ftp-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
32123
diff
changeset
|
253 ;; Host names |
b048135b76bc
(nslookup-font-lock-keywords, ftp-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
32123
diff
changeset
|
254 (list |
b048135b76bc
(nslookup-font-lock-keywords, ftp-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
32123
diff
changeset
|
255 (let ((host-expression "[-A-Za-z0-9]+")) |
b048135b76bc
(nslookup-font-lock-keywords, ftp-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
32123
diff
changeset
|
256 (concat |
b048135b76bc
(nslookup-font-lock-keywords, ftp-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
32123
diff
changeset
|
257 (mapconcat 'identity |
b048135b76bc
(nslookup-font-lock-keywords, ftp-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
32123
diff
changeset
|
258 (make-list 2 host-expression) |
b048135b76bc
(nslookup-font-lock-keywords, ftp-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
32123
diff
changeset
|
259 "\\.") |
b048135b76bc
(nslookup-font-lock-keywords, ftp-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
32123
diff
changeset
|
260 "\\(\\." host-expression "\\)*") |
b048135b76bc
(nslookup-font-lock-keywords, ftp-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
32123
diff
changeset
|
261 ) |
b048135b76bc
(nslookup-font-lock-keywords, ftp-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
32123
diff
changeset
|
262 0 font-lock-variable-name-face) |
b048135b76bc
(nslookup-font-lock-keywords, ftp-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
32123
diff
changeset
|
263 )) |
b048135b76bc
(nslookup-font-lock-keywords, ftp-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
32123
diff
changeset
|
264 "Expressions to font-lock for nslookup.") |
28210 | 265 |
266 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
267 ;; Utility functions | |
268 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
269 | |
270 ;; Simplified versions of some at-point functions from ffap.el. | |
271 ;; It's not worth loading all of ffap just for these. | |
272 (defun net-utils-machine-at-point () | |
273 (let ((pt (point))) | |
274 (buffer-substring-no-properties | |
275 (save-excursion | |
276 (skip-chars-backward "-a-zA-Z0-9.") | |
277 (point)) | |
278 (save-excursion | |
279 (skip-chars-forward "-a-zA-Z0-9.") | |
280 (skip-chars-backward "." pt) | |
281 (point))))) | |
282 | |
283 (defun net-utils-url-at-point () | |
284 (let ((pt (point))) | |
285 (buffer-substring-no-properties | |
286 (save-excursion | |
287 (skip-chars-backward "--:=&?$+@-Z_a-z~#,%") | |
288 (skip-chars-forward "^A-Za-z0-9" pt) | |
289 (point)) | |
290 (save-excursion | |
291 (skip-chars-forward "--:=&?$+@-Z_a-z~#,%") | |
292 (skip-chars-backward ":;.,!?" pt) | |
293 (point))))) | |
294 | |
295 | |
296 (defun net-utils-remove-ctrl-m-filter (process output-string) | |
297 "Remove trailing control Ms." | |
298 (let ((old-buffer (current-buffer)) | |
299 (filtered-string output-string)) | |
300 (unwind-protect | |
301 (let ((moving)) | |
302 (set-buffer (process-buffer process)) | |
303 (setq moving (= (point) (process-mark process))) | |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
304 |
28210 | 305 (while (string-match "\r" filtered-string) |
306 (setq filtered-string | |
307 (replace-match "" nil nil filtered-string))) | |
308 | |
309 (save-excursion | |
310 ;; Insert the text, moving the process-marker. | |
311 (goto-char (process-mark process)) | |
312 (insert filtered-string) | |
313 (set-marker (process-mark process) (point))) | |
314 (if moving (goto-char (process-mark process)))) | |
315 (set-buffer old-buffer)))) | |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
316 |
28210 | 317 (defmacro net-utils-run-program (name header program &rest args) |
318 "Run a network information program." | |
319 ` (let ((buf (get-buffer-create (concat "*" ,name "*")))) | |
320 (set-buffer buf) | |
321 (erase-buffer) | |
322 (insert ,header "\n") | |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
323 (set-process-filter |
28210 | 324 (apply 'start-process ,name buf ,program ,@args) |
325 'net-utils-remove-ctrl-m-filter) | |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
326 (display-buffer buf) |
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
327 buf)) |
28210 | 328 |
329 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
330 ;; Wrappers for external network programs | |
331 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
332 | |
333 ;;;###autoload | |
334 (defun traceroute (target) | |
335 "Run traceroute program for TARGET." | |
336 (interactive "sTarget: ") | |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
337 (let ((options |
28210 | 338 (if traceroute-program-options |
339 (append traceroute-program-options (list target)) | |
340 (list target)))) | |
341 (net-utils-run-program | |
342 (concat "Traceroute" " " target) | |
343 (concat "** Traceroute ** " traceroute-program " ** " target) | |
344 traceroute-program | |
345 options | |
346 ))) | |
347 | |
348 ;;;###autoload | |
349 (defun ping (host) | |
350 "Ping HOST. | |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
351 If your system's ping continues until interrupted, you can try setting |
28210 | 352 `ping-program-options'." |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
353 (interactive |
28210 | 354 (list (read-from-minibuffer "Ping host: " (net-utils-machine-at-point)))) |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
355 (let ((options |
28210 | 356 (if ping-program-options |
357 (append ping-program-options (list host)) | |
358 (list host)))) | |
359 (net-utils-run-program | |
360 (concat "Ping" " " host) | |
361 (concat "** Ping ** " ping-program " ** " host) | |
362 ping-program | |
363 options | |
364 ))) | |
365 | |
366 ;;;###autoload | |
367 (defun ipconfig () | |
368 "Run ipconfig program." | |
369 (interactive) | |
370 (net-utils-run-program | |
371 "Ipconfig" | |
372 (concat "** Ipconfig ** " ipconfig-program " ** ") | |
373 ipconfig-program | |
374 ipconfig-program-options | |
375 )) | |
376 | |
377 ;; This is the normal name on most Unixes. | |
378 ;;;###autoload | |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
379 (defalias 'ifconfig 'ipconfig) |
28210 | 380 |
381 ;;;###autoload | |
382 (defun netstat () | |
383 "Run netstat program." | |
384 (interactive) | |
385 (net-utils-run-program | |
386 "Netstat" | |
387 (concat "** Netstat ** " netstat-program " ** ") | |
388 netstat-program | |
389 netstat-program-options | |
390 )) | |
391 | |
392 ;;;###autoload | |
393 (defun arp () | |
394 "Run the arp program." | |
395 (interactive) | |
396 (net-utils-run-program | |
397 "Arp" | |
398 (concat "** Arp ** " arp-program " ** ") | |
399 arp-program | |
400 arp-program-options | |
401 )) | |
402 | |
403 ;;;###autoload | |
404 (defun route () | |
405 "Run the route program." | |
406 (interactive) | |
407 (net-utils-run-program | |
408 "Route" | |
409 (concat "** Route ** " route-program " ** ") | |
410 route-program | |
411 route-program-options | |
412 )) | |
413 | |
414 ;; FIXME -- Needs to be a process filter | |
415 ;; (defun netstat-with-filter (filter) | |
416 ;; "Run netstat program." | |
417 ;; (interactive "sFilter: ") | |
418 ;; (netstat) | |
419 ;; (set-buffer (get-buffer "*Netstat*")) | |
420 ;; (goto-char (point-min)) | |
421 ;; (delete-matching-lines filter) | |
422 ;; ) | |
423 | |
424 ;;;###autoload | |
425 (defun nslookup-host (host) | |
426 "Lookup the DNS information for HOST." | |
427 (interactive | |
428 (list (read-from-minibuffer "Lookup host: " (net-utils-machine-at-point)))) | |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
429 (let ((options |
28210 | 430 (if nslookup-program-options |
431 (append nslookup-program-options (list host)) | |
432 (list host)))) | |
433 (net-utils-run-program | |
434 "Nslookup" | |
435 (concat "** " | |
436 (mapconcat 'identity | |
437 (list "Nslookup" host nslookup-program) | |
438 " ** ")) | |
439 nslookup-program | |
440 options | |
441 ))) | |
442 | |
443 | |
444 ;;;###autoload | |
445 (defun nslookup () | |
446 "Run nslookup program." | |
447 (interactive) | |
448 (require 'comint) | |
449 (comint-run nslookup-program) | |
450 (nslookup-mode) | |
451 ) | |
452 | |
453 ;; Using a derived mode gives us keymaps, hooks, etc. | |
32197
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
454 (define-derived-mode nslookup-mode comint-mode "Nslookup" |
28210 | 455 "Major mode for interacting with the nslookup program." |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
456 (set |
28210 | 457 (make-local-variable 'font-lock-defaults) |
458 '((nslookup-font-lock-keywords))) | |
459 (setq local-abbrev-table nslookup-mode-abbrev-table) | |
460 (abbrev-mode t) | |
461 (setq comint-prompt-regexp nslookup-prompt-regexp) | |
462 (setq comint-input-autoexpand t) | |
463 ) | |
464 | |
465 (define-key nslookup-mode-map "\t" 'comint-dynamic-complete) | |
466 | |
467 (define-abbrev nslookup-mode-abbrev-table "e" "exit") | |
468 (define-abbrev nslookup-mode-abbrev-table "f" "finger") | |
469 (define-abbrev nslookup-mode-abbrev-table "h" "help") | |
470 (define-abbrev nslookup-mode-abbrev-table "lse" "lserver") | |
471 (define-abbrev nslookup-mode-abbrev-table "q" "exit") | |
472 (define-abbrev nslookup-mode-abbrev-table "r" "root") | |
473 (define-abbrev nslookup-mode-abbrev-table "s" "set") | |
474 (define-abbrev nslookup-mode-abbrev-table "se" "server") | |
475 (define-abbrev nslookup-mode-abbrev-table "v" "viewer") | |
476 | |
477 ;;;###autoload | |
478 (defun dig (host) | |
479 "Run dig program." | |
480 (interactive | |
481 (list | |
482 (progn | |
483 (require 'ffap) | |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
484 (read-from-minibuffer |
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
485 "Lookup host: " |
28210 | 486 (or (ffap-string-at-point 'machine) ""))))) |
487 (net-utils-run-program | |
488 "Dig" | |
489 (concat "** " | |
490 (mapconcat 'identity | |
491 (list "Dig" host dig-program) | |
492 " ** ")) | |
493 dig-program | |
494 (list host) | |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
495 )) |
28210 | 496 |
497 ;; This is a lot less than ange-ftp, but much simpler. | |
498 ;;;###autoload | |
499 (defun ftp (host) | |
500 "Run ftp program." | |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
501 (interactive |
28210 | 502 (list |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
503 (read-from-minibuffer |
28210 | 504 "Ftp to Host: " (net-utils-machine-at-point)))) |
505 (require 'comint) | |
506 (let ((buf (get-buffer-create (concat "*ftp [" host "]*")))) | |
507 (set-buffer buf) | |
32197
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
508 (ftp-mode) |
28210 | 509 (comint-exec buf (concat "ftp-" host) ftp-program nil |
510 (if ftp-program-options | |
511 (append (list host) ftp-program-options) | |
512 (list host))) | |
32197
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
513 (pop-to-buffer buf))) |
28210 | 514 |
32197
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
515 (define-derived-mode ftp-mode comint-mode "FTP" |
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
516 "Major mode for interacting with the ftp program." |
28210 | 517 (setq comint-prompt-regexp ftp-prompt-regexp) |
518 (setq comint-input-autoexpand t) | |
32197
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
519 ;; Only add the password-prompting hook if it's not already in the |
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
520 ;; global hook list. This stands a small chance of losing, if it's |
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
521 ;; later removed from the global list (very small, since any |
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
522 ;; password prompts will probably immediately follow the initial |
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
523 ;; connection), but it's better than getting prompted twice for the |
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
524 ;; same password. |
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
525 (unless (memq 'comint-watch-for-password-prompt |
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
526 (default-value 'comint-output-filter-functions)) |
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
527 (add-hook 'comint-output-filter-functions 'comint-watch-for-password-prompt |
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
528 nil t)) |
28210 | 529 (setq local-abbrev-table ftp-mode-abbrev-table) |
530 (abbrev-mode t) | |
531 ) | |
532 | |
533 (define-abbrev ftp-mode-abbrev-table "q" "quit") | |
534 (define-abbrev ftp-mode-abbrev-table "g" "get") | |
535 (define-abbrev ftp-mode-abbrev-table "p" "prompt") | |
536 (define-abbrev ftp-mode-abbrev-table "anon" "anonymous") | |
537 | |
538 ;; Occasionally useful | |
539 (define-key ftp-mode-map "\t" 'comint-dynamic-complete) | |
540 | |
541 (defun smbclient (host service) | |
542 "Connect to SERVICE on HOST via SMB." | |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
543 (interactive |
28210 | 544 (list |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
545 (read-from-minibuffer |
28210 | 546 "Connect to Host: " (net-utils-machine-at-point)) |
547 (read-from-minibuffer "SMB Service: "))) | |
548 (require 'comint) | |
549 (let* ((name (format "smbclient [%s\\%s]" host service)) | |
550 (buf (get-buffer-create (concat "*" name "*"))) | |
551 (service-name (concat "\\\\" host "\\" service))) | |
552 (set-buffer buf) | |
32197
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
553 (smbclient-mode) |
28210 | 554 (comint-exec buf name smbclient-program nil |
555 (if smbclient-program-options | |
556 (append (list service-name) smbclient-program-options) | |
557 (list service-name))) | |
32197
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
558 (pop-to-buffer buf))) |
28210 | 559 |
560 (defun smbclient-list-shares (host) | |
561 "List services on HOST." | |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
562 (interactive |
28210 | 563 (list |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
564 (read-from-minibuffer |
28210 | 565 "Connect to Host: " (net-utils-machine-at-point)) |
566 )) | |
567 (let ((buf (get-buffer-create (format "*SMB Shares on %s*" host)))) | |
568 (set-buffer buf) | |
569 (smbclient-mode) | |
32197
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
570 (comint-exec buf "smbclient-list-shares" |
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
571 smbclient-program nil (list "-L" host)) |
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
572 (pop-to-buffer buf))) |
28210 | 573 |
32197
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
574 (define-derived-mode smbclient-mode comint-mode "smbclient" |
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
575 "Major mode for interacting with the smbclient program." |
28210 | 576 (setq comint-prompt-regexp smbclient-prompt-regexp) |
577 (setq comint-input-autoexpand t) | |
32197
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
578 ;; Only add the password-prompting hook if it's not already in the |
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
579 ;; global hook list. This stands a small chance of losing, if it's |
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
580 ;; later removed from the global list (very small, since any |
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
581 ;; password prompts will probably immediately follow the initial |
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
582 ;; connection), but it's better than getting prompted twice for the |
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
583 ;; same password. |
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
584 (unless (memq 'comint-watch-for-password-prompt |
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
585 (default-value 'comint-output-filter-functions)) |
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
586 (add-hook 'comint-output-filter-functions 'comint-watch-for-password-prompt |
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
587 nil t)) |
28210 | 588 (setq local-abbrev-table smbclient-mode-abbrev-table) |
589 (abbrev-mode t) | |
590 ) | |
591 | |
592 (define-abbrev smbclient-mode-abbrev-table "q" "quit") | |
593 | |
594 | |
595 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
596 ;; Network Connections | |
597 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
598 | |
599 ;; Full list is available at: | |
600 ;; ftp://ftp.isi.edu/in-notes/iana/assignments/port-numbers | |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
601 (defvar network-connection-service-alist |
28210 | 602 (list |
603 (cons 'echo 7) | |
604 (cons 'active-users 11) | |
605 (cons 'daytime 13) | |
606 (cons 'chargen 19) | |
607 (cons 'ftp 21) | |
608 (cons 'telnet 23) | |
609 (cons 'smtp 25) | |
610 (cons 'time 37) | |
611 (cons 'whois 43) | |
612 (cons 'gopher 70) | |
613 (cons 'finger 79) | |
614 (cons 'www 80) | |
615 (cons 'pop2 109) | |
616 (cons 'pop3 110) | |
617 (cons 'sun-rpc 111) | |
618 (cons 'nntp 119) | |
619 (cons 'ntp 123) | |
620 (cons 'netbios-name 137) | |
621 (cons 'netbios-data 139) | |
622 (cons 'irc 194) | |
623 (cons 'https 443) | |
624 (cons 'rlogin 513) | |
625 ) | |
626 "Alist of services and associated TCP port numbers. | |
627 This list in not complete.") | |
628 | |
629 ;; Workhorse macro | |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
630 (defmacro run-network-program (process-name host port |
28210 | 631 &optional initial-string) |
32197
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
632 `(let ((tcp-connection) |
28210 | 633 (buf) |
634 ) | |
635 (setq buf (get-buffer-create (concat "*" ,process-name "*"))) | |
636 (set-buffer buf) | |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
637 (or |
28210 | 638 (setq tcp-connection |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
639 (open-network-stream |
28210 | 640 ,process-name |
641 buf | |
642 ,host | |
643 ,port | |
644 )) | |
645 (error "Could not open connection to %s" ,host)) | |
646 (erase-buffer) | |
647 (set-marker (process-mark tcp-connection) (point-min)) | |
648 (set-process-filter tcp-connection 'net-utils-remove-ctrl-m-filter) | |
649 (and ,initial-string | |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
650 (process-send-string tcp-connection |
28210 | 651 (concat ,initial-string "\r\n"))) |
652 (display-buffer buf))) | |
653 | |
654 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
655 ;; Simple protocols | |
656 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
657 | |
29303
a3541330de52
(finger-X.500-host-regexps): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
28419
diff
changeset
|
658 (defcustom finger-X.500-host-regexps nil |
a3541330de52
(finger-X.500-host-regexps): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
28419
diff
changeset
|
659 "A list of regular expressions matching host names. |
a3541330de52
(finger-X.500-host-regexps): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
28419
diff
changeset
|
660 If a host name passed to `finger' matches one of these regular |
a3541330de52
(finger-X.500-host-regexps): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
28419
diff
changeset
|
661 expressions, it is assumed to be a host that doesn't accept |
a3541330de52
(finger-X.500-host-regexps): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
28419
diff
changeset
|
662 queries of the form USER@HOST, and wants a query containing USER only." |
a3541330de52
(finger-X.500-host-regexps): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
28419
diff
changeset
|
663 :group 'net-utils |
a3541330de52
(finger-X.500-host-regexps): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
28419
diff
changeset
|
664 :type '(repeat regexp) |
a3541330de52
(finger-X.500-host-regexps): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
28419
diff
changeset
|
665 :version "21.1") |
a3541330de52
(finger-X.500-host-regexps): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
28419
diff
changeset
|
666 |
28210 | 667 ;; Finger protocol |
668 ;;;###autoload | |
669 (defun finger (user host) | |
670 "Finger USER on HOST." | |
671 ;; One of those great interactive statements that's actually | |
672 ;; longer than the function call! The idea is that if the user | |
673 ;; uses a string like "pbreton@cs.umb.edu", we won't ask for the | |
674 ;; host name. If we don't see an "@", we'll prompt for the host. | |
675 (interactive | |
676 (let* ((answer (read-from-minibuffer "Finger User: " | |
677 (net-utils-url-at-point))) | |
678 (index (string-match (regexp-quote "@") answer))) | |
679 (if index | |
29303
a3541330de52
(finger-X.500-host-regexps): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
28419
diff
changeset
|
680 (list (substring answer 0 index) |
a3541330de52
(finger-X.500-host-regexps): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
28419
diff
changeset
|
681 (substring answer (1+ index))) |
a3541330de52
(finger-X.500-host-regexps): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
28419
diff
changeset
|
682 (list answer |
a3541330de52
(finger-X.500-host-regexps): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
28419
diff
changeset
|
683 (read-from-minibuffer "At Host: " |
a3541330de52
(finger-X.500-host-regexps): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
28419
diff
changeset
|
684 (net-utils-machine-at-point)))))) |
a3541330de52
(finger-X.500-host-regexps): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
28419
diff
changeset
|
685 (let* ((user-and-host (concat user "@" host)) |
a3541330de52
(finger-X.500-host-regexps): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
28419
diff
changeset
|
686 (process-name (concat "Finger [" user-and-host "]")) |
a3541330de52
(finger-X.500-host-regexps): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
28419
diff
changeset
|
687 (regexps finger-X.500-host-regexps) |
a3541330de52
(finger-X.500-host-regexps): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
28419
diff
changeset
|
688 found) |
32197
b949d342e936
(nslookup-prompt-regexp, ftp-prompt-regexp)
Miles Bader <miles@gnu.org>
parents:
32158
diff
changeset
|
689 (while (and regexps (not (string-match (car regexps) host))) |
29303
a3541330de52
(finger-X.500-host-regexps): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
28419
diff
changeset
|
690 (setq regexps (cdr regexps))) |
a3541330de52
(finger-X.500-host-regexps): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
28419
diff
changeset
|
691 (when regexps |
a3541330de52
(finger-X.500-host-regexps): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
28419
diff
changeset
|
692 (setq user-and-host user)) |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
693 (run-network-program |
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
694 process-name |
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
695 host |
28210 | 696 (cdr (assoc 'finger network-connection-service-alist)) |
29303
a3541330de52
(finger-X.500-host-regexps): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
28419
diff
changeset
|
697 user-and-host))) |
28210 | 698 |
699 (defcustom whois-server-name "rs.internic.net" | |
700 "Default host name for the whois service." | |
701 :group 'net-utils | |
702 :type 'string | |
703 ) | |
704 | |
705 (defcustom whois-server-list | |
706 '(("whois.arin.net") ; Networks, ASN's, and related POC's (numbers) | |
707 ("rs.internic.net") ; domain related info | |
708 ("whois.abuse.net") | |
709 ("whois.apnic.net") | |
710 ("nic.ddn.mil") | |
711 ("whois.nic.mil") | |
712 ("whois.nic.gov") | |
713 ("whois.ripe.net")) | |
714 "A list of whois servers that can be queried." | |
715 :group 'net-utils | |
716 :type '(repeat (list string))) | |
717 | |
718 (defcustom whois-server-tld | |
719 '(("rs.internic.net" . "com") | |
720 ("rs.internic.net" . "org") | |
721 ("whois.ripe.net" . "be") | |
722 ("whois.ripe.net" . "de") | |
723 ("whois.ripe.net" . "dk") | |
724 ("whois.ripe.net" . "it") | |
725 ("whois.ripe.net" . "fi") | |
726 ("whois.ripe.net" . "fr") | |
727 ("whois.ripe.net" . "uk") | |
728 ("whois.apnic.net" . "au") | |
729 ("whois.apnic.net" . "ch") | |
730 ("whois.apnic.net" . "hk") | |
731 ("whois.apnic.net" . "jp") | |
732 ("whois.nic.gov" . "gov") | |
733 ("whois.nic.mil" . "mil")) | |
734 "Alist to map top level domains to whois servers." | |
735 :group 'net-utils | |
736 :type '(repeat (cons string string))) | |
737 | |
738 (defcustom whois-guess-server t | |
739 "If non-nil then whois will try to deduce the appropriate whois | |
740 server from the query. If the query doesn't look like a domain or hostname | |
741 then the server named by whois-server-name is used." | |
742 :group 'net-utils | |
743 :type 'boolean) | |
744 | |
745 (defun whois-get-tld (host) | |
746 "Return the top level domain of `host', or nil if it isn't a domain name." | |
747 (let ((i (1- (length host))) | |
748 (max-len (- (length host) 5))) | |
749 (while (not (or (= i max-len) (char-equal (aref host i) ?.))) | |
750 (setq i (1- i))) | |
751 (if (= i max-len) | |
752 nil | |
753 (substring host (1+ i))))) | |
754 | |
755 ;; Whois protocol | |
756 ;;;###autoload | |
757 (defun whois (arg search-string) | |
758 "Send SEARCH-STRING to server defined by the `whois-server-name' variable. | |
759 If `whois-guess-server' is non-nil, then try to deduce the correct server | |
760 from SEARCH-STRING. With argument, prompt for whois server." | |
761 (interactive "P\nsWhois: ") | |
762 (let* ((whois-apropos-host (if whois-guess-server | |
763 (rassoc (whois-get-tld search-string) | |
764 whois-server-tld) | |
765 nil)) | |
766 (server-name (if whois-apropos-host | |
767 (car whois-apropos-host) | |
768 whois-server-name)) | |
769 (host | |
770 (if arg | |
771 (completing-read "Whois server name: " | |
772 whois-server-list nil nil "whois.") | |
773 server-name))) | |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
774 (run-network-program |
28210 | 775 "Whois" |
776 host | |
777 (cdr (assoc 'whois network-connection-service-alist)) | |
778 search-string | |
779 ))) | |
780 | |
781 (defcustom whois-reverse-lookup-server "whois.arin.net" | |
782 "Server which provides inverse DNS mapping." | |
783 :group 'net-utils | |
784 :type 'string | |
785 ) | |
786 | |
787 ;;;###autoload | |
788 (defun whois-reverse-lookup () | |
789 (interactive) | |
790 (let ((whois-server-name whois-reverse-lookup-server)) | |
791 (call-interactively 'whois))) | |
792 | |
793 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
794 ;;; General Network connection | |
795 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
796 | |
28419
fed834403704
network-connection-mode is derived from comint-mode
Peter Breton <pbreton@attbi.com>
parents:
28210
diff
changeset
|
797 ;; Using a derived mode gives us keymaps, hooks, etc. |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
798 (define-derived-mode |
28419
fed834403704
network-connection-mode is derived from comint-mode
Peter Breton <pbreton@attbi.com>
parents:
28210
diff
changeset
|
799 network-connection-mode comint-mode "Network-Connection" |
fed834403704
network-connection-mode is derived from comint-mode
Peter Breton <pbreton@attbi.com>
parents:
28210
diff
changeset
|
800 "Major mode for interacting with the network-connection program." |
fed834403704
network-connection-mode is derived from comint-mode
Peter Breton <pbreton@attbi.com>
parents:
28210
diff
changeset
|
801 ) |
fed834403704
network-connection-mode is derived from comint-mode
Peter Breton <pbreton@attbi.com>
parents:
28210
diff
changeset
|
802 |
fed834403704
network-connection-mode is derived from comint-mode
Peter Breton <pbreton@attbi.com>
parents:
28210
diff
changeset
|
803 (defun network-connection-mode-setup (host service) |
fed834403704
network-connection-mode is derived from comint-mode
Peter Breton <pbreton@attbi.com>
parents:
28210
diff
changeset
|
804 (let ((network-abbrev-table |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
805 (or |
28419
fed834403704
network-connection-mode is derived from comint-mode
Peter Breton <pbreton@attbi.com>
parents:
28210
diff
changeset
|
806 (assoc service network-connection-service-abbrev-alist) |
fed834403704
network-connection-mode is derived from comint-mode
Peter Breton <pbreton@attbi.com>
parents:
28210
diff
changeset
|
807 (and (rassoc service network-connection-service-alist) |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
808 (assoc |
28419
fed834403704
network-connection-mode is derived from comint-mode
Peter Breton <pbreton@attbi.com>
parents:
28210
diff
changeset
|
809 (elt (rassoc service network-connection-service-alist) 0) |
fed834403704
network-connection-mode is derived from comint-mode
Peter Breton <pbreton@attbi.com>
parents:
28210
diff
changeset
|
810 network-connection-service-abbrev-alist))))) |
fed834403704
network-connection-mode is derived from comint-mode
Peter Breton <pbreton@attbi.com>
parents:
28210
diff
changeset
|
811 (make-local-variable 'network-connection-host) |
fed834403704
network-connection-mode is derived from comint-mode
Peter Breton <pbreton@attbi.com>
parents:
28210
diff
changeset
|
812 (setq network-connection-host host) |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
813 (make-local-variable 'network-connection-service) |
28419
fed834403704
network-connection-mode is derived from comint-mode
Peter Breton <pbreton@attbi.com>
parents:
28210
diff
changeset
|
814 (setq network-connection-service service) |
fed834403704
network-connection-mode is derived from comint-mode
Peter Breton <pbreton@attbi.com>
parents:
28210
diff
changeset
|
815 (and network-abbrev-table |
fed834403704
network-connection-mode is derived from comint-mode
Peter Breton <pbreton@attbi.com>
parents:
28210
diff
changeset
|
816 (setq local-abbrev-table (cdr network-abbrev-table)) |
fed834403704
network-connection-mode is derived from comint-mode
Peter Breton <pbreton@attbi.com>
parents:
28210
diff
changeset
|
817 (abbrev-mode t) |
fed834403704
network-connection-mode is derived from comint-mode
Peter Breton <pbreton@attbi.com>
parents:
28210
diff
changeset
|
818 ))) |
fed834403704
network-connection-mode is derived from comint-mode
Peter Breton <pbreton@attbi.com>
parents:
28210
diff
changeset
|
819 |
28210 | 820 ;;;###autoload |
821 (defun network-connection-to-service (host service) | |
822 "Open a network connection to SERVICE on HOST." | |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
823 (interactive |
28210 | 824 (list |
825 (read-from-minibuffer "Host: " (net-utils-machine-at-point)) | |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
826 (completing-read "Service: " |
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
827 (mapcar |
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
828 (function |
28210 | 829 (lambda (elt) |
830 (list (symbol-name (car elt))))) | |
831 network-connection-service-alist)))) | |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
832 (network-connection |
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
833 host |
28210 | 834 (cdr (assoc (intern service) network-connection-service-alist))) |
835 ) | |
836 | |
837 ;;;###autoload | |
838 (defun network-connection (host port) | |
839 "Open a network connection to HOST on PORT." | |
840 (interactive "sHost: \nnPort: ") | |
841 (network-service-connection host (number-to-string port))) | |
842 | |
843 (defun network-service-connection (host service) | |
844 "Open a network connection to SERVICE on HOST." | |
845 (require 'comint) | |
28419
fed834403704
network-connection-mode is derived from comint-mode
Peter Breton <pbreton@attbi.com>
parents:
28210
diff
changeset
|
846 (let* ( |
28210 | 847 (process-name (concat "Network Connection [" host " " service "]")) |
848 (portnum (string-to-number service)) | |
28419
fed834403704
network-connection-mode is derived from comint-mode
Peter Breton <pbreton@attbi.com>
parents:
28210
diff
changeset
|
849 (buf (get-buffer-create (concat "*" process-name "*"))) |
28210 | 850 ) |
851 (or (zerop portnum) (setq service portnum)) | |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
852 (make-comint |
28210 | 853 process-name |
854 (cons host service)) | |
28419
fed834403704
network-connection-mode is derived from comint-mode
Peter Breton <pbreton@attbi.com>
parents:
28210
diff
changeset
|
855 (set-buffer buf) |
fed834403704
network-connection-mode is derived from comint-mode
Peter Breton <pbreton@attbi.com>
parents:
28210
diff
changeset
|
856 (network-connection-mode) |
fed834403704
network-connection-mode is derived from comint-mode
Peter Breton <pbreton@attbi.com>
parents:
28210
diff
changeset
|
857 (network-connection-mode-setup host service) |
fed834403704
network-connection-mode is derived from comint-mode
Peter Breton <pbreton@attbi.com>
parents:
28210
diff
changeset
|
858 (pop-to-buffer buf) |
28210 | 859 )) |
860 | |
32123
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
861 (defun network-connection-reconnect () |
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
862 "Reconnect a network connection, preserving the old input ring." |
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
863 (interactive) |
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
864 (let ((proc (get-buffer-process (current-buffer))) |
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
865 (old-comint-input-ring comint-input-ring) |
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
866 (host network-connection-host) |
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
867 (service network-connection-service) |
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
868 ) |
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
869 (if (not (or (not proc) |
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
870 (eq (process-status proc) 'closed))) |
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
871 (message "Still connected") |
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
872 (goto-char (point-max)) |
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
873 (insert (format "Reopening connection to %s\n" host)) |
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
874 (network-connection host |
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
875 (if (numberp service) |
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
876 service |
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
877 (cdr (assoc service network-connection-service-alist)))) |
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
878 (and old-comint-input-ring |
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
879 (setq comint-input-ring old-comint-input-ring)) |
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
880 ))) |
2e9fda397ea2
* net/net-utils.el (nslookup-font-lock-keywords,
Peter Breton <pbreton@attbi.com>
parents:
30548
diff
changeset
|
881 |
28210 | 882 (provide 'net-utils) |
883 | |
884 ;;; net-utils.el ends here |