From: Richard Stallman <rms@gnu.org>
Cc: emacs-devel@gnu.org
Subject: Re: Local interface used for outbound network connections
Date: Thu, 09 Jan 2003 02:28:21 -0500 [thread overview]
Message-ID: <E18WX6z-0001aA-00@fencepost.gnu.org> (raw)
In-Reply-To: <87ptr81sye.fsf@lexx.delysid.org> (message from Mario Lang on Tue, 07 Jan 2003 23:43:53 +0100)
The change looks clean to me. Would someone please install it?
*** process.c.~1.388.~ Mon Nov 18 16:40:06 2002
--- process.c Tue Jan 7 23:26:29 2003
***************
*** 130,136 ****
Lisp_Object Qopen, Qclosed, Qconnect, Qfailed, Qlisten;
Lisp_Object Qlocal, Qdatagram;
Lisp_Object QCname, QCbuffer, QChost, QCservice, QCtype;
! Lisp_Object QClocal, QCremote, QCcoding;
Lisp_Object QCserver, QCnowait, QCnoquery, QCstop;
Lisp_Object QCsentinel, QClog, QCoptions;
Lisp_Object Qlast_nonmenu_event;
--- 130,136 ----
Lisp_Object Qopen, Qclosed, Qconnect, Qfailed, Qlisten;
Lisp_Object Qlocal, Qdatagram;
Lisp_Object QCname, QCbuffer, QChost, QCservice, QCtype;
! Lisp_Object QCiface, QClocal, QCremote, QCcoding;
Lisp_Object QCserver, QCnowait, QCnoquery, QCstop;
Lisp_Object QCsentinel, QClog, QCoptions;
Lisp_Object Qlast_nonmenu_event;
***************
*** 3066,3071 ****
--- 3066,3085 ----
#endif
contact = Fplist_put (contact, QCaddress,
conv_sockaddr_to_lisp (lres->ai_addr, lres->ai_addrlen));
+ #ifdef HAVE_GETSOCKNAME
+ /* Record the address info returned by getsockname
+ if (socktype == SOCK_STREAM && !is_server)
+ {
+ struct sockaddr_in sa1;
+ int len1 = sizeof (sa1);
+ if (getsockname (s, (struct sockaddr *)&sa1, &len1) == 0)
+ {
+ contact =
+ Fplist_put (contact, QCiface,
+ conv_sockaddr_to_lisp (&sa1, len1));
+ }
+ }
+ #endif
}
#ifdef HAVE_GETADDRINFO
***************
*** 6261,6266 ****
--- 6275,6282 ----
staticpro (&QCtype);
QClocal = intern (":local");
staticpro (&QClocal);
+ QCiface = intern (":iface");
+ staticpro (&QCiface);
QCremote = intern (":remote");
staticpro (&QCremote);
QCcoding = intern (":coding");
next prev parent reply other threads:[~2003-01-09 7:28 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-01-07 22:43 Local interface used for outbound network connections Mario Lang
2003-01-08 11:50 ` Kim F. Storm
2003-01-08 14:49 ` Mario Lang
2003-01-08 16:39 ` Kim F. Storm
2003-01-08 16:54 ` Kim F. Storm
2003-01-09 7:28 ` Richard Stallman [this message]
2003-01-09 15:27 ` Mario Lang
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=E18WX6z-0001aA-00@fencepost.gnu.org \
--to=rms@gnu.org \
--cc=emacs-devel@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).