UDP File Transfer Validation and Checksum


 
Thread Tools Search this Thread
Top Forums Programming UDP File Transfer Validation and Checksum
# 1  
Old 08-19-2008
UDP File Transfer Validation and Checksum

Dear All

I have written a client server program for file transmission from one system to other using UDP.

Can i use the cksum number in the udp header to validate if the received packet is corrupted or not? If yes, how can i extract the header and validate it..

Also is there any way that i can call cksum in c program? Except popen("cksum","r")

Any inputs will be of great help

Thanks in advance
Collins
# 2  
Old 08-21-2008
From UDP: the User Datagram Protocol
Quote:
Although UDP provides error checking, it does not do anything to recover from an error. Some implementations of UDP simply discard the damaged segment; others pass the damaged segment to the application with a warning.
So getting the checksum is OS and IP-stack implementation-dependent. BTW: How are you dealing with missing packets? (you are tracking sequence numbers, yes?)
# 3  
Old 08-21-2008
Hello

Thanks for the input...

Exactly.. I am tracking the sequence number and if i dont receive it, i request it for again.. Is that the best way?
# 4  
Old 08-21-2008
The page quoted by otheus came from the book "Computer Networking - a top-down approach featuring the Internet" with Kurose as one of the authors (Addison Wesley). Consider getting yourself a copy of that one. It was the textbook for networking course in my university.

Specifically, Section 3.4 "Principles of Reliable Data Transfer" discusses the various approaches of developing reliable data transfer over an unreliable transport. That section should answer your question.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Need UNIX script to check checksum and dummy file creation.

Hi Folks, I need a UNIX script which will copy files(Table wise) from source directory to destination directory (Under table directory) and also creates 2 additional files after getting copied to destination directory with extension .pdy and .ldy , . pdy file will be zero byte file should get... (4 Replies)
Discussion started by: Nicks1412
4 Replies

2. Shell Programming and Scripting

How to perform checksum of a file on remote server using Curl?

Hi, We have an AIX server and have CURL 7.40 installed in it. We are struggling to perform checksum on the file present on the remote server (AWS). We want to validate the checksum on the file pre and post download to make sure that there is no issue with the file. We are writing a shell... (0 Replies)
Discussion started by: Sanjay_13
0 Replies

3. Solaris

Checksum different For Same file Created By Two processes

I have one utility in VB which generates attached file(circle.14.mdn_range.properties_VB) & i have created other file(circle.14.mdn_range.properties_UTLFILE) having same contents with UTL_FILE(Oracle running on solaris). But checksum is different for both the files with same contents. Can you... (7 Replies)
Discussion started by: siramitsharma
7 Replies

4. Shell Programming and Scripting

Needed script to FTP a File and generate a quality checksum file

hi all i want a script to FTP a file and should generate a quality checksum file means when I FTP a file from one server to another server it should generate a QC file which should contain timestamp,no.of records in that file Thanks in advance saikumar (3 Replies)
Discussion started by: hemanthsaikumar
3 Replies

5. UNIX for Advanced & Expert Users

UDP Socket File Sharing

Hai, I am having one server/client both running in different host in UDP. How can i assure whether the data is recieved properly in client side. I am writing 250 KB in Server and client reading only 150 KB data. I am using select write in server and select read in client also.If i am putting one... (1 Reply)
Discussion started by: andrew.paul
1 Replies

6. IP Networking

Wireshark UDP checksum bad checksum

Hello I am communicating with two devices using my computer over UDP protocol. The application is running fine. When I monitored the UDP traffic using Wireshark software, I found that there were too many Checksum errors. Please find attached the png file showing this error. I am about to... (0 Replies)
Discussion started by: AustinCann
0 Replies

7. Shell Programming and Scripting

Get filesize and checksum of spooled file in a log file ...

Hi All, I have spooled some data in a file (a.dat, b.dat etc..) and after that I want to get the size and checksum of spooled file (a.dat, b.dat etc..) in a log file(file_info.log). By the way I dont want lost the previous output file info(Append data). View of log file that I want to... (5 Replies)
Discussion started by: ce_emre21
5 Replies

8. UNIX for Advanced & Expert Users

Checksum with file permissions and dates ?

find . \! -type p -exec cksum {} \; >> check.out Okay i was able to get the checksum of the files of the directory and sub directories..how do I get the list with the checksum and the file permissions and dates in the same file...now this is driving me crazy...can anyone help me with this ? ls... (3 Replies)
Discussion started by: moe458
3 Replies

9. Programming

UDP Checksum problem

Hello sir,, i m doing network programming in C could u plzz let me know...at the time of udp checksum calculation does htons() or ntohs() play some role..?? i mean will there be any difference if some values are added in network form and other is in the host form... Thnx 4 ur time.. ... (4 Replies)
Discussion started by: nirucool89
4 Replies
Login or Register to Ask a Question