-
There is 2 places in TFTPServerProcess where a random number is generated, but not used.
//randomly generate the port to connect
Random rnd = new Random();.
2009-06-18 23:52:42 UTC by nobody
-
Glad to hear that you got it working and are using the program.
--Mark.
2009-06-16 21:16:21 UTC by mgenti
-
Nevermind, found it. Thanks anyway.
And thanks for the program!!!
2009-06-16 18:51:48 UTC by traderric
-
I'm transferring files between Cisco router flash and Server 2008. Both sides say the transfer was successful, but a search fails to find the file. What folder should the transferred file by deposited? Perhaps it is a folder permission issue. Thanks!!!
2009-06-16 15:28:02 UTC by traderric
-
If the server listen on all ips (IPAddress.Any), the client cant put file on it.
2009-05-19 09:23:31 UTC by nobody
-
Take a look at the TFTPTransferState.cs file as these objects are created for each transfer and probably contain the information you are looking for. You should be able to register for TFTPServerTransferEvent notifications from your TFTP server instance. Walking through the example TFTP Server GUI should provide a good example of how to get this information for your own application.
2009-05-07 03:47:22 UTC by mgenti
-
Sorry for the cross post.
I'm trying to figure out how to get a hold of the current status of the transfer. I see the pieces in place, but not the mechanism. I'd like to be able to PutFile, then find the current bytes transferred out of the total, then know that it was completed successfully. A little code would help.
Thanks,
Bill.
2009-05-05 12:55:11 UTC by nobody
-
I'm trying to figure out how to get a hold of the current status of the transfer. I see the pieces in place, but not the mechanism. I'd like to be able to PutFile, then find the current bytes transferred out of the total, then know that it was completed successfully. A little code would help.
Thanks,
Bill.
2009-05-04 13:50:33 UTC by nobody
-
Is the file transferring successfully or does the server respond back with an error?.
2009-04-30 14:24:43 UTC by mgenti
-
I have also managed to get the class running and listening, but no files are created when they are sent to the server.
2009-04-29 20:25:45 UTC by nobody