aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKim F. Storm2006-01-04 00:26:24 +0000
committerKim F. Storm2006-01-04 00:26:24 +0000
commit8a5db8aea1941c29f6fd0030756d058fd3d1fb54 (patch)
treeba36227c4f326fe653f82dace9cd9ecee31e23c2 /src
parentc64d00d9aa5766b16fa73861d3dd754d0db17cd1 (diff)
downloademacs-8a5db8aea1941c29f6fd0030756d058fd3d1fb54.tar.gz
emacs-8a5db8aea1941c29f6fd0030756d058fd3d1fb54.zip
*** empty log message ***
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index eed0c4dddb8..4502365a7aa 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,20 @@
12006-01-04 Kim F. Storm <storm@cua.dk> 12006-01-04 Kim F. Storm <storm@cua.dk>
2 2
3 * process.c: Add IPv6 support.
4 (Qipv4, Qipv6): New vars.
5 (syms_of_process): Intern and staticpro them.
6 (Fformat_network_address): Handle 9 or 8 element vector as IPv6 address
7 with or without port number. Handle 4 element vector as IPv4 address
8 without port number.
9 (conv_sockaddr_to_lisp, get_lisp_to_sockaddr_size)
10 (conv_lisp_to_sockaddr): Handle IPv6 addresses.
11 (Fmake_network_process): Use :family 'ipv4 and 'ipv6 to explicitly
12 request that address family only. :family nil or omitted means to
13 determine address family from the specified :host and :service.
14 (ifflag_table): Add missing OpenBSD IFF_ flags.
15 (server_accept_connection): Handle IPv6 addresses.
16 (init_process): Add (:family ipv4) and (:family ipv6) sub-features.
17
3 * .gdbinit: Undo last change. Instead, look at Vsystem_type to 18 * .gdbinit: Undo last change. Instead, look at Vsystem_type to
4 determine which breakpoints to set. 19 determine which breakpoints to set.
5 20