I am new to raw socket. I want write a server and a client application that use raw sockets to send and receive raw data in one or more files. Each file may contain one or more data segments of 50 bytes each with a designated delimiters (i.e., space, carriage return, and etc.) The job of my server is to read from the file and send each segment at a time. Each packet should only contain the data without any traditional header information such as the Ethernet header like the MAC addresses (the packet may contain some form of data in front of the packet to indicate the length and/or the start of the packet and the delimiter to indicate the end of the packet). The client application should simply listen to the port, parse the data and write the raw data into a file.
Please, guide me. I have found many raw socket programs but, none were clear. If anybody could give me a solid start then that would be great.