From: "Gary V. Vaughan" <git@mlists.thewrittenword.com>
To: git@vger.kernel.org
Subject: Re: [PATCH 5/5] struct sockaddr_storage->ss_family is not portable
Date: Fri, 12 Mar 2010 04:56:54 +0000 [thread overview]
Message-ID: <20100312045654.GH7877@thor.il.thewrittenword.com> (raw)
In-Reply-To: <alpine.DEB.2.00.1003111838260.29993@cone.home.martin.st>
On Thu, Mar 11, 2010 at 06:40:37PM +0200, Martin Storsj? wrote:
> On Thu, 11 Mar 2010, Gary V. Vaughan wrote:
>
> > Many of our supported platforms do not have this declaration, for
> > example solaris2.6 thru 2.7. Lack of ss_family implies no IPV6
> > support, so we can wrap all the ss_family references in an ifndef
> > NO_IPV6, and assume sockaddr_in otherwise.
>
> While this probably is ok as such, you can actually do the same without
> accessing the sockaddr_storage->ss_family; just cast it to (const struct
> sockaddr*) and use ->sa_family instead, that should work just as well, as
> far as I know.
At least on aix-5.2 it won't be reliable unless you juggle compiler
switches just right (I didn't check anywhere else, but the precedent
for the bit ordering of the struct members being different is already
set):
#if defined(COMPAT_43) && !defined(_KERNEL)
struct sockaddr {
ushort_t sa_family; /* address family */
char sa_data[14]; /* up to 14 bytes of direct
address */
};
#else
struct sockaddr {
uchar_t sa_len; /* total length */
sa_family_t sa_family; /* address family */
char sa_data[14]; /* actually longer; address value */
};
#endif
Cheers,
Gary
--
Gary V. Vaughan (gary@thewrittenword.com)
next prev parent reply other threads:[~2010-03-12 4:57 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-03-11 16:37 [PATCH 5/5] struct sockaddr_storage->ss_family is not portable Gary V. Vaughan
2010-03-11 16:40 ` Martin Storsjö
2010-03-12 4:56 ` Gary V. Vaughan [this message]
2010-03-12 7:24 ` Martin Storsjö
2010-03-15 21:03 ` [PATCH] daemon.c: avoid accessing ss_family member of struct sockaddr_storage Brandon Casey
2010-03-15 21:29 ` Jeff King
2010-03-15 21:41 ` Martin Storsjö
2010-03-15 21:42 ` Brandon Casey
2010-04-25 8:37 ` Gary V. Vaughan
2010-03-15 21:37 ` Martin Storsjö
2010-03-15 22:10 ` [PATCH v2] " Brandon Casey
2010-03-16 7:52 ` Martin Storsjö
2010-04-25 8:36 ` [PATCH 5/5] struct sockaddr_storage->ss_family is not portable Gary V. Vaughan
2010-04-25 19:05 ` Martin Storsjö
2010-04-26 16:55 ` Gary V. Vaughan
2010-03-11 22:27 ` Jeff King
2010-03-11 23:57 ` Brandon Casey
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
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20100312045654.GH7877@thor.il.thewrittenword.com \
--to=git@mlists.thewrittenword.com \
--cc=git@vger.kernel.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.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox