diff options
| author | Juanma Barranquero | 2006-10-30 23:24:18 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2006-10-30 23:24:18 +0000 |
| commit | 337e3c70f820aae9e34fccef009cfaaec7bd3cb2 (patch) | |
| tree | 506f3c0423d3702cffc06f56ea713211e5ad9e27 /lisp/ChangeLog | |
| parent | 41c98a5ec03967dfb58dd7a3864bbf387745cd29 (diff) | |
| download | emacs-337e3c70f820aae9e34fccef009cfaaec7bd3cb2.tar.gz emacs-337e3c70f820aae9e34fccef009cfaaec7bd3cb2.zip | |
Add support for TCP sockets.
(server-use-tcp, server-host, server-auth-dir): New options.
(server-auth-key): New variable.
(server-ensure-safe-dir): Create nonexistent parent dirs. Ignore Unix-style
file modes on Windows.
(server-start): Crete a TCP or Unix socket according to the value of
`server-use-tcp'. For TCP sockets, create the id/auth file in `server-auth-dir'
directory.
(server-process-filter): Delete process if authentication fails (which never
happens for Unix sockets).
Diffstat (limited to 'lisp/ChangeLog')
| -rw-r--r-- | lisp/ChangeLog | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c1902d0a1a4..38a904eee9c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,16 @@ | |||
| 1 | 2006-10-31 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * server.el: Add support for TCP sockets. | ||
| 4 | (server-use-tcp, server-host, server-auth-dir): New options. | ||
| 5 | (server-auth-key): New variable. | ||
| 6 | (server-ensure-safe-dir): Create nonexistent parent dirs. Ignore | ||
| 7 | Unix-style file modes on Windows. | ||
| 8 | (server-start): Crete a TCP or Unix socket according to the value | ||
| 9 | of `server-use-tcp'. For TCP sockets, create the id/auth file in | ||
| 10 | `server-auth-dir' directory. | ||
| 11 | (server-process-filter): Delete process if authentication | ||
| 12 | fails (which never happens for Unix sockets). | ||
| 13 | |||
| 1 | 2006-10-30 David Kastrup <dak@gnu.org> | 14 | 2006-10-30 David Kastrup <dak@gnu.org> |
| 2 | 15 | ||
| 3 | * subr.el (add-to-list): Don't continue checking if a match has | 16 | * subr.el (add-to-list): Don't continue checking if a match has |