Sponsored Content
Top Forums Programming Store file into a buffer to send it through a socket Post 302347809 by Corona688 on Wednesday 26th of August 2009 12:36:15 PM
Old 08-26-2009
Oh, if you're using stdio anyway, you might as well try this so as to include a few dozen less headers:

Code:
#include <stdio.h>

int main(void)
{
  size_t bytes;
  char buf[512];
  FILE *fp=fopen("filename", "rb");
  if(fp == NULL)
  {
    fprintf(stderr, "Couldn't open file\n");
    return(1);
  }

  bytes=fread(buf, 1, 512, fp);
  if(bytes <= 0)
  {
    fprintf(stderr, "Couldn't read from file\n");
    fclose(fp);
    return(2);
  }
  fclose(fp);
  fprintf(stderr, "Read %d bytes into buffer\n", bytes);


  return(0);
}

sendfile() is more efficient in some circumstances, but is also 100% linux-specific and nonportable, as well as subject to certain limitations -- the data source must be a file, and the destination must be a socket. It used to be less arbitrary, leading to a few bits of new code taking advantage of it breaking when this behavior was changed. I'm not sure if it behaves the same with all sockets or not, particularly raw sockets which as I understand it must be packet-based.

Last edited by Corona688; 08-26-2009 at 01:57 PM.. Reason: fclose can happen sooner
 

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
send(3XNET)					   X/Open Networking Services Library Functions 				       send(3XNET)

NAME
send - send a message on a socket SYNOPSIS
cc [ flag ... ] file ... -lxnet [ library ... ] #include <sys/socket.h> ssize_t send(int socket, const void *buffer, size_t length, int flags); PARAMETERS
socket Specifies the socket file descriptor. buffer Points to the buffer containing the message to send. length Specifies the length of the message in bytes. flags Specifies the type of message transmission. Values of this argument are formed by logically OR'ing zero or more of the following flags: MSG_EOR Terminates a record (if supported by the protocol) MSG_OOB Sends out-of-band data on sockets that support out-of-band communications. The significance and semantics of out-of- band data are protocol-specific. DESCRIPTION
The send() function initiates transmission of a message from the specified socket to its peer. The send() function sends a message only when the socket is connected (including when the peer of a connectionless socket has been set via connect(3XNET)). The length of the message to be sent is specified by the length argument. If the message is too long to pass through the underlying proto- col, send() fails and no data is transmitted. Successful completion of a call to send() does not guarantee delivery of the message. A return value of -1 indicates only locally-detected errors. If space is not available at the sending socket to hold the message to be transmitted and the socket file descriptor does not have O_NON- BLOCK set, send() blocks until space is available. If space is not available at the sending socket to hold the message to be transmitted and the socket file descriptor does have O_NONBLOCK set, send() will fail. The select(3C) and poll(2) functions can be used to determine when it is possible to send more data. The socket in use may require the process to have appropriate privileges to use the send() function. USAGE
The send() function is identical to sendto(3XNET) with a null pointer dest_len argument, and to write() if no flags are used. RETURN VALUES
Upon successful completion, send() returns the number of bytes sent. Otherwise, -1 is returned and errno is set to indicate the error. ERRORS
The send() function will fail if: EAGAIN The socket's file descriptor is marked O_NONBLOCK and the requested operation would block. EWOULDBLOCK EBADF The socket argument is not a valid file descriptor. ECONNRESET A connection was forcibly closed by a peer. EDESTADDRREQ The socket is not connection-mode and no peer address is set. EFAULT The buffer parameter can not be accessed. EINTR A signal interrupted send() before any data was transmitted. EMSGSIZE The message is too large be sent all at once, as the socket requires. ENOTCONN The socket is not connected or otherwise has not had the peer prespecified. ENOTSOCK The socket argument does not refer to a socket. EOPNOTSUPP The socket argument is associated with a socket that does not support one or more of the values set in flags. EPIPE The socket is shut down for writing, or the socket is connection-mode and is no longer connected. In the latter case, and if the socket is of type SOCK_STREAM, the SIGPIPE signal is generated to the calling thread. The send() function may fail if: EACCES The calling process does not have the appropriate privileges. EIO An I/O error occurred while reading from or writing to the file system. ENETDOWN The local interface used to reach the destination is down. ENETUNREACH No route to the network is present. ENOBUFS Insufficient resources were available in the system to perform the operation. ENOSR There were insufficient STREAMS resources available for the operation to complete. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Standard | +-----------------------------+-----------------------------+ |MT-Level |MT-Safe | +-----------------------------+-----------------------------+ SEE ALSO
connect(3XNET), getsockopt(3XNET), poll(2), recv(3XNET), recvfrom(3XNET), recvmsg(3XNET), select(3C), sendmsg(3XNET), sendto(3XNET), set- sockopt(3XNET), shutdown(3XNET), socket(3XNET), attributes(5), standards(5) SunOS 5.11 1 Nov 2003 send(3XNET)
All times are GMT -4. The time now is 07:59 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy