search for: try_bind_local

Displaying 6 results from an estimated 6 matches for "try_bind_local".

2004 May 28
1
IP not logged in log file
I just setup rsync on Solaris 2.6 and my log file shows: 2004/05/28 07:54:03 [20996] rsync allowed access on module foo from 0.0.0.0 (0.0.0.0) instead of the actual connecting IP address. Is this a config issue? I don't know if this is related but when building: socket.c: In function `try_bind_local': socket.c:139: warning: implicit declaration of function `getaddrinfo' socket.c:148: warning: implicit declaration of function `freeaddrinfo' clientname.c: In function `client_addr': clientname.c:71: warning: implicit declaration of function `getnameinfo' clientname.c: In funct...
2006 May 04
0
compiling rsync statically
...e glibc version used for linking uidlist.o(.text+0x775): In function `add_uid': /tmp/rsync-2.6.8/uidlist.c:66: warning: Using 'getpwuid' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking socket.o(.text+0x4ba): In function `try_bind_local': /tmp/rsync-2.6.8/socket.c:145: warning: Using 'getaddrinfo' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking ldd tells "not a dynamic executable" i`m puzzled - how can rsync need shared library on the "...
2004 May 27
0
compiling on HP-UX
...signed type in conditional expression In file included from options.c:22: popt/popt.h:377: warning: type qualifiers ignored on function return type socket.c: In function `establish_proxy_connection': socket.c:97: warning: signed and unsigned type in conditional expression socket.c: In function `try_bind_local': socket.c:139: warning: implicit declaration of function `getaddrinfo' socket.c:148: warning: implicit declaration of function `freeaddrinfo' socket.c: In function `is_a_socket': socket.c:433: warning: passing arg 5 of `getsockopt' from incompatible pointer type socket.c: In fu...
2005 Sep 14
1
RSYNC "make" problems with HP UX 11.0 & GCC 3.3.2
...H -Wall -W -I./popt -c hlink.c -o hlink.o gcc -I. -I. -g -O2 -DHAVE_CONFIG_H -Wall -W -I./popt -c token.c -o token.o gcc -I. -I. -g -O2 -DHAVE_CONFIG_H -Wall -W -I./popt -c uidlist.c -o uidlist.o gcc -I. -I. -g -O2 -DHAVE_CONFIG_H -Wall -W -I./popt -c socket.c -o socket.o socket.c: In function `try_bind_local': socket.c:139: warning: implicit declaration of function `getaddrinfo' socket.c:148: warning: implicit declaration of function `freeaddrinfo' socket.c: In function `is_a_socket': socket.c:427: warning: passing arg 5 of `getsockopt' from incompatible pointer type socket.c: In fu...
2003 Mar 30
1
[RFC][patch] dynamic rolling block and sum sizes II
...ecv); int main(int argc, char *argv[]); @@ -190,6 +191,7 @@ int report); void sig_int(void); void finish_transfer(char *fname, char *fnametmp, struct file_struct *file); +void read_sum_head(int f, struct sum_struct *sum); void send_files(struct file_list *flist,int f_out,int f_in); int try_bind_local(int s, int ai_family, int ai_socktype, --- generator.c Sat Mar 29 11:11:30 2003 +++ generator.c Sat Mar 29 12:16:02 2003 @@ -116,13 +116,21 @@ /* - send a header that says "we have no checksums" down the f_out fd + * NULL sum_struct means we have no checksums */ -static...
2004 Jan 17
1
--delete-sent-files (AKA --move-files)
...193,7 @@ int set_perms(char *fname,struct file_st void sig_int(void); void finish_transfer(char *fname, char *fnametmp, struct file_struct *file); void read_sum_head(int f, struct sum_struct *sum); +void successful_send(int i); void send_files(struct file_list *flist, int f_out, int f_in); int try_bind_local(int s, int ai_family, int ai_socktype, const char *bind_address); Index: receiver.c --- receiver.c 15 Jan 2004 07:42:25 -0000 1.63 +++ receiver.c 17 Jan 2004 05:04:55 -0000 @@ -39,6 +39,7 @@ extern char *backup_dir; extern char *backup_suffix; extern int backup_suffix_len; extern int clean...