aboutsummaryrefslogtreecommitdiff
path: root/src/lib9/_p9dialparse.c
Commit message (Collapse)AuthorAgeFilesLines
* all: fix or silence various gcc warningsRuss Cox2020-01-121-1/+1
| | | | | As usual, gcc finds some real problems but also reports a ton of noise. Fix the problems and quiet the noise.
* lib9/p9dialparse: fix segfault on gethostbynameDavid du Colombier2012-09-111-1/+1
| | | | | | | | In some situations, gethostbyname can return an empty address list. R=rsc http://codereview.appspot.com/6443097
* lib9: remove ss_len manipulation in _p9dialparseRuss Cox2012-09-081-3/+0
| | | | | | | Not all systems have ss_len, and we've never set it before. R=rsc http://codereview.appspot.com/6497102
* lib9: fix announce on OS XRuss Cox2012-09-081-5/+7
| | | | | R=rsc http://codereview.appspot.com/6495109
* lib9: fix openbsd buildDavid du Colombier2012-06-271-0/+1
| | | | | | | | Fix build error and warning on OpenBSD 5.1, as reported by Dimitri Sokolyuk. R=rsc http://codereview.appspot.com/6350044
* lib9/dial: add support for IPv6David du Colombier2012-06-021-52/+53
| | | | | | | | | | | | | | | | | | | | | | | | | | | The function p9dialparse() returns the host as a sockaddr_storage structure instead of a u32int, to be able to handle both IPv4 and IPv6 addresses. Because the sockaddr_storage structure also handle port numbers and Unix path names, there is no longer need to set them in the calling functions. However, these values are still returned for convenience. The sockaddr_in and sockaddr_un structures have been replaced by sockaddr_storage to handle Unix, IPv4 and IPv6 sockets. Names and addresses are resolved using either gethostbyname() or getaddrinfo() functions. The getaddrinfo() function is documented in RFC2553 and standardized since POSIX.1-2001. It supports both IPv4 and IPv6 addresses. The gethostbyname() function is deprecated since POSIX.1-2008. However, some libc implementations don't handle getaddrinfo() properly, thus we preferred to try gethostbyname() first. I've tried to preserve most of the old code logic to prevent from surprising or unwanted behavior. R=rsc http://codereview.appspot.com/6255068
* fix type-punned pointer warnings from gccRuss Cox2010-03-101-1/+1
| | | | | R=rsc http://codereview.appspot.com/396042
* ignore /net/ prefixes - been long enoughrsc2006-07-231-3/+0
|
* add dnsrsc2006-02-201-0/+2
|
* make sure to set p9unixrsc2005-05-071-0/+1
|
* hard code list of plan 9 services in case they are not in /etc/servicesrsc2005-02-111-3/+33
|
* Include netinet/in.h to get ntohs prototype.wkj2004-12-291-0/+1
|
* publish p9dialparsersc2004-06-161-1/+1
|
* Make things build on FreeBSD again.rsc2003-11-231-3/+5
|
* Annoying changes to work on Sun boxes.rsc2003-11-231-5/+5
|
* Various additions and fixes.rsc2003-11-231-0/+151