diff options
| author | Lars Ingebrigtsen | 2019-09-21 09:58:07 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2019-09-21 09:58:13 +0200 |
| commit | 321175434a7bfec1be563a6eb2665f085cd40686 (patch) | |
| tree | 16753830592a00fd82bd9f15a77eff6923d6395c /src/process.c | |
| parent | 8f5da5587f41bec80ea32c6c9c670d132c7b6a5e (diff) | |
| download | emacs-321175434a7bfec1be563a6eb2665f085cd40686.tar.gz emacs-321175434a7bfec1be563a6eb2665f085cd40686.zip | |
Mention how to listen to all interfaces in make-network-process
* src/process.c (Fmake_network_process): Mention how to listen to
all interfaces (bug#34617).
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/process.c b/src/process.c index a95192d8fba..d30b17d45e5 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -3758,8 +3758,9 @@ also nil, meaning that this process is not associated with any buffer. | |||
| 3758 | address. The symbol `local' specifies the local host. If specified | 3758 | address. The symbol `local' specifies the local host. If specified |
| 3759 | for a server process, it must be a valid name or address for the local | 3759 | for a server process, it must be a valid name or address for the local |
| 3760 | host, and only clients connecting to that address will be accepted. | 3760 | host, and only clients connecting to that address will be accepted. |
| 3761 | `local' will use IPv4 by default, use a FAMILY of 'ipv6 to override | 3761 | If all interfaces should be bound, an address of \"0.0.0.0\" (for |
| 3762 | this. | 3762 | ipv4) or \"::\" (for ipv6) can be used. `local' will use IPv4 by |
| 3763 | default, use a FAMILY of 'ipv6 to override this. | ||
| 3763 | 3764 | ||
| 3764 | :service SERVICE -- SERVICE is name of the service desired, or an | 3765 | :service SERVICE -- SERVICE is name of the service desired, or an |
| 3765 | integer specifying a port number to connect to. If SERVICE is t, | 3766 | integer specifying a port number to connect to. If SERVICE is t, |