Sponsored Content
Top Forums Programming Store file into a buffer to send it through a socket Post 302347320 by semash! on Tuesday 25th of August 2009 11:16:12 AM
Old 08-25-2009
Store file into a buffer to send it through a socket

Hello,

I'm doing a very simple program which reads a file and sends whatever is in the file through a socket. Like the program "file2cable".

Let's say i have a file containing the following, which is a hex dump of an ARP request frame:
Code:
ff ff ff ff ff ff 00 1b 24 79 5a 73 08 06 
00 01 08 00 06 04 00 01 00 1b 24 79 5a 73 
c0 a8 00 04 00 00 00 00 00 00 c0 a8 00 01

Right now, i have to fill the buffer manulally doing this, for example, if i want to transmit the first line of the file:

buffer[]={0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x1B,0x24,0x79,0x5A,0x73,0x08,0x06};

So, how do i store all of the bytes contained in the file into a buffer so sendto() can send it?

Please help!
Thanks and excuse me for my poor english
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

What is my UDP send/recieve buffer size

Hi, If some one was to suggest, "increase your kernal tunables related to UDP, in particular the UDP send/recieve buffer size".... then what would they mean? :confused: How can I find out what this current value is? Thousand many thanks. Neil (3 Replies)
Discussion started by: nhatch
3 Replies

2. Shell Programming and Scripting

send function in socket

Hi All, I encountered a stange problem while doing a perl script to use socket. i need to transfer a file from client to sever. but error came as argument missing in send function.........Plz tell me the wt r the arguments in send and recv functions....... (0 Replies)
Discussion started by: trupti_rinku
0 Replies

3. Programming

UDP socket - can both client and server recv and send

Hi, Am very new to socket programming. When we use UDP sockets to communicate between two processess, will both the client/server socket be able to send/recv ? meaning can sendto()/ recvfrom() be used on both server and client? It could be useful even if anybody provide some link on socket... (1 Reply)
Discussion started by: rvan
1 Replies

4. UNIX for Advanced & Expert Users

connect problem for sctp socket (ipv6 socket) - Runtime fail Invalid Arguments

Hi, I was porting ipv4 application to ipv6; i was done with TCP transports. Now i am facing problem with SCTp transport at runtime. To test SCTP transport I am using following server and client socket programs. Server program runs fine, but client program fails giving Invalid Arguments for... (0 Replies)
Discussion started by: chandrutiptur
0 Replies

5. Programming

Send/Receive buffer size??

Dear friends, How do I find the TCP send and receive buffer size? (1 Reply)
Discussion started by: nagalenoj
1 Replies

6. Programming

Socket Programming Send File

Hello my friends; Look at this 2 program: Client: #include <stdlib.h> #include <stdio.h> #include <string.h> #include <sys/socket.h> #include <sys/types.h> #include <netinet/in.h> #include <arpa/inet.h> int main ( int agrc, char *argv ) { int Socket; struct sockaddr_in... (5 Replies)
Discussion started by: htabesh
5 Replies

7. Programming

Finding used socket receive-buffer size

I have set the receive buffer size of socket to max. setsockopt(sd,SOL_SOCKET, SO_RCVBUF,&max,optval); Am reading data from the socket in a loop(say max 100 bytes per recv) while(1) { int rlen=recv(sd,(void *)buf, 100 , 0); //err handle and processing } Assume my process is slow... (2 Replies)
Discussion started by: johnbach
2 Replies

8. Programming

how can I send and receive data in client server socket programing

char name; printf ("Welcome to the server \n"); printf ("Enter user name: \n"); scanf ("%c", &name); how can client send name to server:what should be the code? int send ( int sid , const char ∗buffer Ptr , int len , int f l a g ) how can client receive ack from... (1 Reply)
Discussion started by: saiful_911
1 Replies

9. AIX

Sample C program to Send/Recieve a file using Socket

Hi All, I urgently need a Sample C program to Send/Recieve a file using Socket. Thanks Sara (1 Reply)
Discussion started by: saraperu
1 Replies

10. Programming

How to avoid 'No buffer space available' on C socket?

Hello everybody, Years ago i left in stand-by a project of mine where the main program was supposed to send thousands ARP frames over the socket as fast as it could; but because of a programming issue i couldn't continue it. 2 days ago I decided to solve that issue. The thing is, when the... (4 Replies)
Discussion started by: Zykl0n-B
4 Replies
FCGI(3pm)						User Contributed Perl Documentation						 FCGI(3pm)

NAME
FCGI - Fast CGI module SYNOPSIS
use FCGI; my $count = 0; my $request = FCGI::Request(); while($request->Accept() >= 0) { print("Content-type: text/html ", ++$count); } DESCRIPTION
Functions: FCGI::Request Creates a request handle. It has the following optional parameters: input perl file handle (default: *STDIN) output perl file handle (default: *STDOUT) error perl file handle (default: *STDERR) These filehandles will be setup to act as input/output/error on successful Accept. environment hash reference (default: \%ENV) The hash will be populated with the environment. socket (default: 0) Socket to communicate with the server. Can be the result of the OpenSocket function. For the moment, it's the file descriptor of the socket that should be passed. This may change in the future. You should only use your own socket if your program is not started by a process manager such as mod_fastcgi (except for the FastCgiExternalServer case) or cgi-fcgi. If you use the option, you have to let your FastCGI server know which port (and possibly server) your program is listening on. See remote.pl for an example. flags (default: 0) Possible values: FCGI::FAIL_ACCEPT_ON_INTR If set, Accept will fail if interrupted. It not set, it will just keep on waiting. Example usage: my $req = FCGI::Request; or: my %env; my $in = new IO::Handle; my $out = new IO::Handle; my $err = new IO::Handle; my $req = FCGI::Request($in, $out, $err, \%env); FCGI::OpenSocket(path, backlog) Creates a socket suitable to use as an argument to Request. path Pathname of socket or colon followed by local tcp port. Note that some systems take file permissions into account on Unix domain sockets, so you'll have to make sure that the server can write to the created file, by changing the umask before the call and/or changing permissions and/or group of the file afterwards. backlog Maximum length of the queue of pending connections. If a connection request arrives with the queue full the client may receive an error with an indication of ECONNREFUSED. FCGI::CloseSocket(socket) Close a socket opened with OpenSocket. $req->Accept() Accepts a connection on $req, attaching the filehandles and populating the environment hash. Returns 0 on success. If a connection has been accepted before, the old one will be finished first. Note that unlike with the old interface, no die and warn handlers are installed by default. This means that if you are not running an sfio enabled perl, any warn or die message will not end up in the server's log by default. It is advised you set up die and warn handlers yourself. FCGI.pm contains an example of die and warn handlers. $req->Finish() Finishes accepted connection. Also detaches filehandles. $req->Flush() Flushes accepted connection. $req->Detach() Temporarily detaches filehandles on an accepted connection. $req->Attach() Re-attaches filehandles on an accepted connection. $req->LastCall() Tells the library not to accept any more requests on this handle. It should be safe to call this method from signal handlers. Note that this method is still experimental and everything about it, including its name, is subject to change. $env = $req->GetEnvironment() Returns the environment parameter passed to FCGI::Request. ($in, $out, $err) = $req->GetHandles() Returns the file handle parameters passed to FCGI::Request. $isfcgi = $req->IsFastCGI() Returns whether or not the program was run as a FastCGI. LIMITATIONS
FCGI.pm isn't Unicode aware, only characters within the range 0x00-0xFF are supported. Attempts to output strings containing characters above 0xFF results in a exception: (F) "Wide character in %s". Users who wants the previous (FCGI.pm <= 0.68) incorrect behavior can disable the exception by using the "bytes" pragma. { use bytes; print "x{263A}"; } AUTHOR
Sven Verdoolaege <skimo@kotnet.org> perl v5.14.2 2011-11-15 FCGI(3pm)
All times are GMT -4. The time now is 08:07 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy