<feed xmlns='http://www.w3.org/2005/Atom'>
<title>plan9port/src/cmd/vbackup, branch patch</title>
<subtitle>Plan 9 from User Space (with patches)</subtitle>
<link rel='alternate' type='text/html' href='https://git.rctt.net/plan9port/'/>
<entry>
<title>DragonFly: fix build</title>
<updated>2025-07-25T19:02:59+00:00</updated>
<author>
<name>Dan Cross</name>
<email>cross@gajendra.net</email>
</author>
<published>2025-07-25T19:02:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rctt.net/plan9port/commit/?id=9d2e0d31f76dfa2922236675981746090bbf3c1a'/>
<id>9d2e0d31f76dfa2922236675981746090bbf3c1a</id>
<content type='text'>
Fix the build for DragonFlyBSD.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix the build for DragonFlyBSD.
</pre>
</div>
</content>
</entry>
<entry>
<title>all: fix #includes for AIX, add a few AIX "implementation" files</title>
<updated>2020-05-08T00:36:03+00:00</updated>
<author>
<name>Ben Huntsman</name>
<email>BHuntsman@mail2.cu-portland.edu</email>
</author>
<published>2020-05-05T02:53:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rctt.net/plan9port/commit/?id=5802b09e9d8ceadd2cefdccfd0391c04e492369b'/>
<id>5802b09e9d8ceadd2cefdccfd0391c04e492369b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Trivial changes: whitespace and modes.</title>
<updated>2020-01-10T14:54:30+00:00</updated>
<author>
<name>Dan Cross</name>
<email>cross@gajendra.net</email>
</author>
<published>2020-01-10T14:44:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rctt.net/plan9port/commit/?id=fa325e9b42b0bdfb48857d1958d9fb7ceac55151'/>
<id>fa325e9b42b0bdfb48857d1958d9fb7ceac55151</id>
<content type='text'>
Remote whitespace at the ends of lines.
Remove blank lines from the ends of files.
Change modes on source files so that they
are not executable.

Signed-off-by: Dan Cross &lt;cross@gajendra.net&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Remote whitespace at the ends of lines.
Remove blank lines from the ends of files.
Change modes on source files so that they
are not executable.

Signed-off-by: Dan Cross &lt;cross@gajendra.net&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>vbackup: fix compilation on NetBSD (thanks Álvaro Jurado)</title>
<updated>2014-08-06T12:43:21+00:00</updated>
<author>
<name>David du Colombier</name>
<email>0intro@gmail.com</email>
</author>
<published>2014-08-06T12:43:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rctt.net/plan9port/commit/?id=738e890b19eb560e557197aa59598a5e08983a28'/>
<id>738e890b19eb560e557197aa59598a5e08983a28</id>
<content type='text'>
On NetBSD 5.0 and upper, mount() require
data_len as a fifth argument.

LGTM=rsc
R=rsc
CC=elbingmiss
https://codereview.appspot.com/111600043
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
On NetBSD 5.0 and upper, mount() require
data_len as a fifth argument.

LGTM=rsc
R=rsc
CC=elbingmiss
https://codereview.appspot.com/111600043
</pre>
</div>
</content>
</entry>
<entry>
<title>all: DragonFly port.</title>
<updated>2014-02-28T04:17:47+00:00</updated>
<author>
<name>Shenghou Ma</name>
<email>minux.ma@gmail.com</email>
</author>
<published>2014-02-28T04:17:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rctt.net/plan9port/commit/?id=20035ed43cfd67cddd01969e155794e1e057d9e6'/>
<id>20035ed43cfd67cddd01969e155794e1e057d9e6</id>
<content type='text'>
Fix compilation problems, libdraw still doesn't work right yet.

LGTM=rsc
R=rsc
https://codereview.appspot.com/67820046
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix compilation problems, libdraw still doesn't work right yet.

LGTM=rsc
R=rsc
https://codereview.appspot.com/67820046
</pre>
</div>
</content>
</entry>
<entry>
<title>lib9/dial: add support for IPv6</title>
<updated>2012-06-02T19:50:59+00:00</updated>
<author>
<name>David du Colombier</name>
<email>0intro@gmail.com</email>
</author>
<published>2012-06-02T19:50:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rctt.net/plan9port/commit/?id=3409bc9ae1614ba47430a3f593fdbe5fc177c878'/>
<id>3409bc9ae1614ba47430a3f593fdbe5fc177c878</id>
<content type='text'>
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
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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
</pre>
</div>
</content>
</entry>
<entry>
<title>fix type-punned pointer warnings from gcc</title>
<updated>2010-03-10T22:50:33+00:00</updated>
<author>
<name>Russ Cox</name>
<email>rsc@swtch.com</email>
</author>
<published>2010-03-10T22:50:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rctt.net/plan9port/commit/?id=0c9c620f39e56c42802504003fd05664aba670a4'/>
<id>0c9c620f39e56c42802504003fd05664aba670a4</id>
<content type='text'>
R=rsc
http://codereview.appspot.com/396042
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
R=rsc
http://codereview.appspot.com/396042
</pre>
</div>
</content>
</entry>
<entry>
<title>vbackup: fix build on FreeBSD 8</title>
<updated>2009-09-13T03:26:48+00:00</updated>
<author>
<name>Russ Cox</name>
<email>rsc@swtch.com</email>
</author>
<published>2009-09-13T03:26:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rctt.net/plan9port/commit/?id=efd88f54e8335f916e780669814ba34e5884b7a0'/>
<id>efd88f54e8335f916e780669814ba34e5884b7a0</id>
<content type='text'>
fixes #30 http://code.swtch.com/plan9port/issues/30/

http://codereview.appspot.com/117060
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
fixes #30 http://code.swtch.com/plan9port/issues/30/

http://codereview.appspot.com/117060
</pre>
</div>
</content>
</entry>
<entry>
<title>vbackup: update to new libventi interface</title>
<updated>2009-06-16T14:28:13+00:00</updated>
<author>
<name>Russ Cox</name>
<email>rsc@swtch.com</email>
</author>
<published>2009-06-16T14:28:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rctt.net/plan9port/commit/?id=e781b7b60ab1ac8d0c6af11c584e2f48a26946c8'/>
<id>e781b7b60ab1ac8d0c6af11c584e2f48a26946c8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>vbackup: adapt to new libventi interface</title>
<updated>2009-06-10T17:16:40+00:00</updated>
<author>
<name>Russ Cox</name>
<email>rsc@swtch.com</email>
</author>
<published>2009-06-10T17:16:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rctt.net/plan9port/commit/?id=b8f457199c4228aed8a8049639e85df2c9cbe858'/>
<id>b8f457199c4228aed8a8049639e85df2c9cbe858</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
