Main Page   Alphabetical List   Data Structures   File List   Data Fields   Globals   Related Pages  

t_stub.c File Reference

This file contains really simple implementations for rsync global functions, so that module test harnesses can run standalone. More...

Go to the source code of this file.

Functions

void rprintf (enum logcode UNUSED(code), const char *format,...)
void _exit_cleanup (int code, const char *file, int line)

Variables

int modify_window = 0


Detailed Description

This file contains really simple implementations for rsync global functions, so that module test harnesses can run standalone.

Definition in file t_stub.c.


Function Documentation

void rprintf enum logcode UNUSED(code  ,
const char *    format,
...   
 

Definition at line 31 of file t_stub.c.

References code, and logcode.

Referenced by _exit_cleanup(), add_delete_entry(), add_exclude_list(), check_hard_link(), check_name(), check_timeout(), clean_flist(), client_run(), client_sockaddr(), compare_addrinfo_sockaddr(), copy_argv(), copy_file(), daemon_main(), delete_file(), delete_files(), delete_one(), die_from_readerr(), do_cmd(), do_recv(), do_section(), do_server_recv(), do_server_sender(), emit_filelist_progress(), establish_proxy_connection(), finish_filelist_progress(), finish_transfer(), flist_expand(), generate_files(), generate_sums(), get_local_name(), get_secret(), get_tmpname(), getpassf(), hard_link_one(), hash_search(), keep_backup(), list_file_entry(), local_child(), log_exit(), log_formatted(), log_transfer(), lookup_name(), lp_do_parameter(), main(), make_bak_dir(), make_exclude(), make_file(), make_simple_backup(), map_parameter(), map_ptr(), match_address(), match_report(), match_sums(), matched(), open_socket_in(), open_socket_out(), OpenConfFile(), option_error(), out_of_memory(), overflow(), Parameter(), parse_arguments(), piped_child(), pm_process(), print_child_argv(), print_rsync_version(), read_batch_csum_info(), read_batch_csums_file(), read_batch_delta_file(), read_batch_flist_file(), read_longint(), read_unbuffered(), receive_data(), receive_file_entry(), receive_sums(), recv_deflated_token(), recv_file_list(), recv_files(), recv_generator(), report(), report_exclude_result(), robust_move(), robust_unlink(), rprint_progress(), rsync_module(), Section(), see_deflate_token(), send_deflated_token(), send_directory(), send_exclude_list(), send_file_list(), send_files(), set_boolean(), set_modtime(), set_perms(), set_socket_options(), setup_protocol(), show_argvs(), show_flist(), show_malloc_stats(), sock_exec(), start_accept_loop(), start_client(), start_filelist_progress(), start_socket_client(), try_bind_local(), usage(), whine_about_eof(), write_batch_argvs_file(), write_batch_csums_file(), write_batch_delta_file(), write_batch_flist_file(), and writefd_unbuffered().

00032 {
00033         va_list ap;
00034         va_start(ap, format);
00035         vfprintf(stderr, format, ap);
00036         va_end(ap);
00037 }

void _exit_cleanup int    code,
const char *    file,
int    line
 

Definition at line 39 of file t_stub.c.

References code.

00040 {
00041         fprintf(stderr, "exit(%d): %s(%d)\n",
00042                 code, file, line);
00043         exit(code);
00044 }


Variable Documentation

int modify_window = 0
 

Definition at line 29 of file t_stub.c.

Referenced by server_options(), and usage().


Generated on Tue Apr 16 12:37:39 2002 for rsync by doxygen1.2.15