Displaying 5 results from an estimated 5 matches for "a_af".
Did you mean:
a_a
2002 Nov 17
0
[PATCH] Patches to rsync-2.5.5 for Stratus VOS (update)
...ddrinfo(hostname, servname, hints, r
char pton[PTON_MAX];
struct addrinfo ai;
struct addrinfo *pai;
- u_short port;
+ ushort_t port;
#ifdef FAITH
static int firsttime = 1;
@@ -395,8 +395,10 @@ getaddrinfo(hostname, servname, hints, r
/* hostname as numeric name */
for (i = 0; afdl[i].a_af; i++) {
if (inet_pton(afdl[i].a_af, hostname, pton)) {
- u_long v4a;
- u_char pfx;
+ ulong_t v4a;
+#ifdef INET6
+ uchar_t pfx;
+#endif
switch (afdl[i].a_af) {
case AF_INET:
@@ -470,10 +472,13 @@ get_name(addr, afd, res, numaddr, pai, p
struct addrinfo *pai;
int port0;
{
-...
2002 Sep 06
0
[PATCH] Patches to rsync-2.5.5 for Stratus VOS
...ddrinfo(hostname, servname, hints, r
char pton[PTON_MAX];
struct addrinfo ai;
struct addrinfo *pai;
- u_short port;
+ ushort_t port;
#ifdef FAITH
static int firsttime = 1;
@@ -395,8 +395,10 @@ getaddrinfo(hostname, servname, hints, r
/* hostname as numeric name */
for (i = 0; afdl[i].a_af; i++) {
if (inet_pton(afdl[i].a_af, hostname, pton)) {
- u_long v4a;
- u_char pfx;
+ ulong_t v4a;
+#ifdef INET6
+ uchar_t pfx;
+#endif
switch (afdl[i].a_af) {
case AF_INET:
@@ -470,10 +472,13 @@ get_name(addr, afd, res, numaddr, pai, p
struct addrinfo *pai;
int port0;
{
-...
2002 Oct 14
0
[PATCH] Patches to rsync-2.5.5 for Stratus VOS (resend)
...ddrinfo(hostname, servname, hints, r
char pton[PTON_MAX];
struct addrinfo ai;
struct addrinfo *pai;
- u_short port;
+ ushort_t port;
#ifdef FAITH
static int firsttime = 1;
@@ -395,8 +395,10 @@ getaddrinfo(hostname, servname, hints, r
/* hostname as numeric name */
for (i = 0; afdl[i].a_af; i++) {
if (inet_pton(afdl[i].a_af, hostname, pton)) {
- u_long v4a;
- u_char pfx;
+ ulong_t v4a;
+#ifdef INET6
+ uchar_t pfx;
+#endif
switch (afdl[i].a_af) {
case AF_INET:
@@ -470,10 +472,13 @@ get_name(addr, afd, res, numaddr, pai, p
struct addrinfo *pai;
int port0;
{
-...
2002 Nov 20
0
[PATCH] Updated patch to rsync for Stratus VOS
...addrinfo(hostname, servname, hints, r
char pton[PTON_MAX];
struct addrinfo ai;
struct addrinfo *pai;
- u_short port;
+ ushort_t port;
#ifdef FAITH
static int firsttime = 1;
@@ -395,7 +395,7 @@ getaddrinfo(hostname, servname, hints, r
/* hostname as numeric name */
for (i = 0; afdl[i].a_af; i++) {
if (inet_pton(afdl[i].a_af, hostname, pton)) {
- u_long v4a;
+ ulong_t v4a;
switch (afdl[i].a_af) {
case AF_INET:
@@ -520,7 +520,7 @@ get_addr(hostname, af, res, pai, port0)
struct addrinfo *pai;
int port0;
{
- u_short port = port0 & 0xffff;
+ ushort_t port = port0...
2004 Feb 25
3
[patch] Correct configure test for sin_len to compile on Tru64 Unix
The last versions of rsync fail to compile on Tru64 Unix (alpha),
because of a typo in configure.in.
The problem is that the code in configure check for sockaddr.sa_len,
while the code uses sockaddr.sin_len. This patch fixes the problem.
Please include it in the next version of rsync.
diff -ur src-2.6.0/configure.in src-2.6.0-local/configure.in
--- src-2.6.0-local/configure.in