Sending Files #269
-
I am trying to use a single file to send multiple packets of data through the command line. My text file looks similar to this: I did this in hopes that Packet sender would open the file and send each message individually using the given delay, but it sends the whole file as one big packet. How should I proceed? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The You could instead use a generic sleep command in between statements... Example...
Also, if you are sending a file, you could use the
Keep in mind that UDP has a size limit that is typically around 1024 bytes. Hope that helps. |
Beta Was this translation helpful? Give feedback.
The
-w 500
means "wait 500 ms for a response". It won't help you when using UDP.You could instead use a generic sleep command in between statements...
Example...
Also, if you are sending a file, you could use the
-f
parameter to send it directly.Keep in mind that UDP has a size limit that is typically around 1024 bytes.
Hope that helps.