aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Pluim2019-11-07 14:19:43 +0100
committerRobert Pluim2019-11-07 18:16:07 +0100
commit8ce2ec15f483a17ead34514242cba384d2d795a2 (patch)
treeb759c1408718b556bb8b3cea1cdad587866eb0ba
parente06324a032e9248cb9bce0e40077a726cc4ea719 (diff)
downloademacs-8ce2ec15f483a17ead34514242cba384d2d795a2.tar.gz
emacs-8ce2ec15f483a17ead34514242cba384d2d795a2.zip
Describe IPv6 format in docstring for 'make-network-process'
* src/process.c (Fmake_network_process): Add description of IPv6 address format.
-rw-r--r--src/process.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/process.c b/src/process.c
index af282652eb4..1f959e39607 100644
--- a/src/process.c
+++ b/src/process.c
@@ -3794,6 +3794,8 @@ process, the FAMILY, HOST, and SERVICE args are ignored.
3794The format of ADDRESS depends on the address family: 3794The format of ADDRESS depends on the address family:
3795- An IPv4 address is represented as a vector of integers [A B C D P] 3795- An IPv4 address is represented as a vector of integers [A B C D P]
3796corresponding to numeric IP address A.B.C.D and port number P. 3796corresponding to numeric IP address A.B.C.D and port number P.
3797- An IPv6 address has the same format as an IPv4 address but with 9
3798elements rather than 5.
3797- A local address is represented as a string with the address in the 3799- A local address is represented as a string with the address in the
3798local address space. 3800local address space.
3799- An "unsupported family" address is represented by a cons (F . AV) 3801- An "unsupported family" address is represented by a cons (F . AV)