rsync.net
rsync.net copied to clipboard
Application stops at "int i = f.readint();"
Hello,
I am trying to get the .net implementation of rsync up and running but I'm experiencing a few problems. Most of them I figured out on my own but I'm pretty stuck now. The communication between the server and the client has been established because whenever I shut down the server app, the client throws an error but I'm experiencing a problem while sending the files to the server. In the class "sender.cs" (55th line of the class, procedure SendFiles) the application hangs on the line that says "int i = f.readInt();". Is this a bug or am I most likely doing something wrong?
I call the application like this (on the client-side):
static void Main(string[] args) {
args = new string[] { "-a", "-v", "-v", "-v","-v", "-z", "-r", "c:\test", "rsync://duffman@PC-duff/ftp" };
MainClass mc = new MainClass();
mc.Run(args);
}
Does anybody know why the application hangs while sending the files?
Thanks, Duffman-