Link to home
Start Free TrialLog in
Avatar of simisudevan
simisudevan

asked on

Socket programming in C


My project is socket programming in c (Filetransfer in c under unix OS). How can I send file from one system to another through C.Please give me  proper guidance
                                               Simi
                                               
                                                   

Avatar of chris_calabrese
chris_calabrese

This sounds an awful lot like a homework assignment...
The server creates a socket and listens for connections.  The client connects to the socket and sends the file...  You'll have to make up your own protocol for how the data is sent, but other than this, it is rather trivial.

What part are you having difficulty with?  What platform are you using?

For your protocol, I would suggest you keep it simple.  For example, your conversation could look something like this:

Server:  listening on socket
Client:  connect to server
Client:  send "filename" (so the server knows how to store the incoming data), and "size" (so the server knows how much to expect)
Server:  ok, send the file
Client:  send "file data"
Server:  send "Received!  Thanks for the file"
Avatar of simisudevan

ASKER

Hai nebeker
                Thanks for your valuable suggestion. But how we can implement it in C.
 I am totally new to this topic. I need proper guidance in socket programming.I just know how to send messages  from one computer to another. But I have no idea about filetransfer.

Thankyou  once again
                                Simi
           
             

     
There's not much difference between sending messages (which you already know how to do) and sending a file.  The main one is that your messages are probably fixed-length, or are strings terminated by nulls..   When sending a file, you use the same process, except that you need to send the filesize across first, then you just shove all of the file data into the socket :)

So, your client would do this:

open socket
send "File=filename.ext; size=10000"
read in the 10000 byes of the file
send <raw file data>
close socket

your server would have to parse the first message, and then wait for the next 10,000 bytes to come along...

It's pretty simple.  How much do you have working already?  If you post that, I can show you what you need to add...
Have you made any progress on this?  Do you need help with anything specific?

Hai nebeker
           Can I make this small project userfriendly ie
Can I include graphich functions in this project. I got a new topic SVGAlib. But I did't know about this.
                                               Simi    
I would suggest you get the file transfer stuff working first as a command-line version, before you start thinking about making a nice GUI for it...
ASKER CERTIFIED SOLUTION
Avatar of cyberpassion
cyberpassion

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
how about using sendfile() function.
hai
   visit:
             http://www.linuxgazette.com/issue74/tougher.html
This question has been abandoned. I will make a recommendation to the moderators on its resolution in a week or two. I don't have the time/knowledge/resources to test this, so I would appreciate any comments that would help me to make a recommendation.

If you are recommending your own comment as an answer, please review it to ensure it is 100% correct, is the only solution and does not duplicate another Experts comments. Otherwise the recommendation should be to save as a PAQ (or delete)
 
In the absence of responses, I may recommend DELETE unless it is clear to me that it has value as a PAQ. Silence = you don't care
 
tfewster
Cleanup Volunteer
I would recommend you PAQ this question & award points to cyberpassion.  The link to "Beej's Guide to Network Programming" is very handy...
nebeker, thanks for reviewing this question.

I will leave a recommendation for this question in the Cleanup topic area as follows:

- Answered by cyberpassion

Please leave any comments here within the next 7 days

PLEASE DO NOT ACCEPT THIS COMMENT AS AN ANSWER !

tfewster
Cleanup Volunteer
per recommendation

SpideyMod
Community Support Moderator @Experts Exchange
Refer "UNIX NETWORK PROGRAMMING" BY RICHARD STEPHENS
there is day time server and daytime client
modify it as like ur wish

if u need code exactly reply