Tagged Questions
0
votes
1answer
35 views
Add a header to a string and sending it with TCP socket
I have a client/server that exchanges messages, and i am trying to add the size of the string i am sending, in the beginning of the string, in order for the server to know how many bytes to read.
I ...
0
votes
3answers
51 views
Does it make sense to do a select() when using ONLY 1 non-blocking socket?
My application has ONLY 1 Unix TCP socket that it uses to recv() and send(). The socket is non-blocking. Given this, is there an advantage in doing a select() before a send()/recv()?
If the ...
0
votes
2answers
43 views
Windows socket errorcode 10055
I've developed an app that uses sockets over windows. It works perfectly but after some time, the internet connection begin to fail and finally I get this error (10055), which means that my app run ...
1
vote
1answer
42 views
arp request and reply using c socket programming
I am trying to receive and send arp packets using c programming in Linux (ubuntu)
My program works fine [ with out any error ], but i can not get the packets from wireshark.
source code:
my source ...
-1
votes
0answers
20 views
Event based non blocking client connection
I need to write a smtp client program that will open multiple smtp sockets , each connecting to a smtpd server (non blocking) in a single thread/process and simultaneously send mails to each server ...
0
votes
0answers
14 views
Unable to dial using rild-debug?
Im trying to use dial using rild-debug socket. but when im doing it sometimes the modem crash occurs and other times rild crash occurs. Im unable to get through the problem even after disabling the ...
0
votes
1answer
91 views
Select in C, why does it fail?
I'm reviewing a code in C with select(2) function. In this code, select function should return a number different from 0 when any of a set of two sockets it's ready. However it fails to find any file ...
0
votes
1answer
62 views
C Send Socket without Defining Socket
What does this line of code do
send(4, "test\n", 15, 0);
If there is no socket defined in the code?
-3
votes
1answer
53 views
How to ensure that UDP socket is closed? [closed]
I have a Client Server application. The client sends commands to server and receives the data on a UDP socket channel.
Each time the socket file is created with a different id.
I am executing the ...
2
votes
1answer
28 views
Truncated tar.gz archieve after download by a self-coded download manager using socket
i try to code my own download manager using c and sockets, now somethings strange happens and I really cannot explain why.
So what I do is: I create sockets, connect to server, create and send a GET ...
0
votes
2answers
68 views
How to send a signal to all process from child process?
I 'm trying to do a socket programming example with using fork() call, my problem is: When a child process finished a job, i want to kill all other process. I think if i send a singal to others ... Is ...
0
votes
2answers
41 views
bittorrent protocol by udp sockets [closed]
I am stucked with implementing bittorent client in posix c language . I was looking for some examples and found libbt library (SourceForge.net/projects/libbt). In the bittorent, specification is ...
1
vote
1answer
54 views
What is the mistake in converting a byte array to bitmap in android? (the byte array is sent from a c/c++ server, android beeing the client)
I'm developing an android app that sends it's accelerometer and gravity sensor data to a c/c++ server which uses openGL library to make a 3D shape rotate on the screen. I want to send back to the ...
1
vote
1answer
45 views
PACKET_TX_RING only sending out first packet, then not doing anything anymore
I have the following code:
#ifndef RAWSOCKET_H
#define RAWSOCKET_H
#include <stdio.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <stdint.h>
...
4
votes
1answer
50 views
“‘sockaddr_in’ undeclared (first use in this function)” error despite including the requisite headers
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <unistd.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <unistd.h>
...
0
votes
1answer
21 views
Why should I use, or not use, MSG_CONFIRM?
I am acquainting with BSD sockets, and flicking through the man page of sendto, I bumped into MSG_CONFIRM flag, which is quite mysterious to me at the moment.
The description says:
Tell the link ...
1
vote
0answers
40 views
Lost messages with non-blocking OpenSSL in C
Context: I'm developing a client-server application that is fairly solid most of the time, despite frequent network problems, outages, broken pipes, and so on. I use non-blocking sockets, select(), ...
3
votes
4answers
98 views
How can I refuse a socket connection in C?
If I want to accept a connection I call accept, but how can I refuse a connection?
In a working socket echo client I have this if statement. In the echo server, how can I make the echo client reach ...
0
votes
2answers
84 views
TCP/IP connection between ubuntu (C) and windows (Java)
I'm trying to establish a TCP/IP communication between a server in C running in ubuntu 12.04 and a client in Java (EJS) running in Win7. The server is a thread of a greater program, so it's created ...
0
votes
2answers
34 views
pselect gets interrupted occationally
First and formost, I didn't have the reputation to tag this as being a question about 'pselect', so I went with 'select'.
I use pselect to handle timeouts on an UDP socket. The code looks as follows:
...
0
votes
4answers
54 views
Non Blocking recv() in C Sockets
I am using an infinite loop in sockets in which if it receives some data it should receive it or if it wants to send data it sends. Something like given below. I am using select. I have only one ...
-7
votes
5answers
107 views
How could I convert from IP address to MAC address
I want to store all the MAC the mac address which has access to my server.
All I know are only the IP addresses. All the machines are under unique gateway.
Could I got the MAC address from their IP ...
1
vote
3answers
47 views
What is the purpose of calling fcntl() be called with the file descriptor as -1 and cmd as F_GETFL?
I am trying to understand what this line of code means:
flags = fcntl(-1,F_GETFL,0);
0
votes
1answer
62 views
Multiple TCP streams interfere with each other
I have a client that connects to an NFS server and writes data. It is a multiprocess application that creates as many TCP connections as there are processes. The problem is that if I try one process, ...
0
votes
1answer
38 views
strange udp socket sendto behaviour
I'm trying to send a data using UDP socket and capture the data using a wireshark (under Windows7):
client_sockd= socket(AF_INET,SOCK_DGRAM,IPPROTO_IP);
client_address.sin_family = AF_INET;
...
0
votes
3answers
50 views
Socket doesn't receive complete data on HPUX
I really don't understand what is going wrong here, so I hope somebody may spot something I missed.
I'm writing a user daemon which is accepting a client that I develop in java. For now this client ...
0
votes
0answers
79 views
Missing ARP packets in SOCK_RAW socket
Source of example: source.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/socket.h>
#include ...
0
votes
3answers
39 views
Run multiple executables all at once
I have a C Sockets application, different executables of which must run at same time all at once, preferably in different terminals. How do I do it?
For example, there are four exes, ./one, ./two, ...
0
votes
2answers
36 views
Handle postthreadmessage() inside a thread which is blocking in while(1) loop or use “Event Driven Sockets”
I have a single server multiple client udp application. There is a single thread (thread#1) with a single socket (socket#1) to receive data from client#1 continuously. The task of this receiving ...
2
votes
1answer
25 views
close() after system() weird behavior
I'm calling system("bash ../tools/bashScript \"This is an argument!\" &"), then I'm calling close(socketFD) directly after system returns, of course I've read that system's argument appended with ...
0
votes
0answers
36 views
Limiting Maximum Number of Connections in proxy server
I am attempting to implement a proxy server and a proxy client in C (separately yes!). So in this scenario, we have a client, a proxy client, a proxy server and a server.
The proxy client accepts a ...
0
votes
2answers
73 views
Casting arrays and structs
Suppose I have some complex struct
struct icmphdr
{
u_int8_t type;
u_int8_t code;
u_int16_t checksum;
/* Parts of the packet below don’t have to appear */
union
{
...
2
votes
1answer
60 views
Why the first client sees to have source ip of 0.0.0.0?
I have a client.c server.c on linux. on both I init a socket:
sockfd = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP)
in the server I add:
listen_addr.sin_family = AF_INET;
listen_addr.sin_port = ...
-1
votes
1answer
77 views
Blocking sockets v/s non-blocking sockets in multi-threaded single server multiple client application [closed]
I had been working on a Server Client aplication where Server is going to service(sendto + receivefrom)'x' number of Clients at a time. For this purpose, I have created 'x' number of threads on Server ...
0
votes
3answers
81 views
understanding INADDR_ANY for socket programming - c
I am trying to program some sockets and so, on the server side, I use htonl(INADDR_ANY). To the extent I understood, it seems to me that this function generates a random IP (am I correct ?). In fact, ...
0
votes
3answers
64 views
Using sockets in multithread server
guys!
I'm developing multithread server on c under *nix. In the main thread of the process I have listening socket which waits for connections (accept). When it gets a connection (accept returns ...
-1
votes
3answers
64 views
Why read and write can not work normally
I write a simple server to transfer a file to the client. Here are the source codes.
//server.c
#include "general.h"
#define LISTENQ 10
#define BUFSIZE 1024
#define FILENAME "List"
void sendlist(int ...
0
votes
3answers
63 views
Write and read, socket AF_UNIX in C
I'm writing some socket functions in C but I encounter this problem.
I have a struct with three fields:
typedef struct {
char type;
unsigned int length;
char *buffer;
} ...
0
votes
2answers
51 views
File Descriptor for socket not working
Here is the code i am using. Whenever i write something to the Stdin, it works, but it is not working for socket. It's not able to enter the loop for Socket. I am new to socket programming.
void ...
0
votes
1answer
37 views
Comparison between pointer and integer when using inet_ntop in c
From the "man" pages it looks like inet_ntop returns a string (const char*) which should be alright when comparing to NULL. However, in my program I get a compiler warning at the first line in this ...
0
votes
1answer
49 views
Timeout implementation in C for TFTP
I am trying to implement the the timeout mechanism in my c implementation of TFTP, and i am looking for some general help.
What I am wondering is how to manage the timeout situation. The premature ...
1
vote
2answers
74 views
Creating a basic C/C++ TCP socket writer
Below is the following basic socket code I came up with:
//General includes:
#include <iostream>
#include <stdio.h>
#include <string>
//Network related includes:
#include ...
2
votes
1answer
38 views
Given any epoll TCP socket event, if EPOLLRDHUP=0 and EPOLLIN=1; is a subsequent call to read()/recv() guaranteed to return a read size unequal to 0?
From the manual of epoll_ctl:
EPOLLRDHUP (since Linux 2.6.17)
Stream socket peer closed connection, or shut down writing half of connection. (This flag is especially useful for writing simple ...
0
votes
1answer
76 views
UDP multi-client chat server
I have a multi-client chat server and for some reason only the first client is being added. I used a tutorial to help get me started. I have included my code below. When I try and add another client ...
-3
votes
1answer
32 views
Cannot access ifreq structure definition, __USE_MISC macro undefined
I am trying to compile the following single C file (called main.c):
#include <stdio.h>
#define __USE_MISC 1
#include <net/if.h>
int main(int argc, char **argv)
{
ifreq id_ifreq;
...
0
votes
1answer
59 views
Can't delude host command with DNS spoofing
I recently discover the raw sockets and I currently trying to capture a DNS packet (with the libcap library) sent with the host command and to reply to it before the DNS server with a wrong address. ...
0
votes
2answers
62 views
Using C sockets: Address already in use
So the basic premise of my program is that I'm supposed to create a tcp session, direct traffic through it, and detect any connection losses. If the connection does break, I need to close the sockets ...
0
votes
1answer
43 views
C Handling multiple types of UDP packets
I'm writing an application which listens for incoming UDP packets. There's a possibility of receiving many different types of packets. For instance, the packets could be defined as such,
Package ...
1
vote
2answers
64 views
UDP buffer overflow w/o filling the receive buffer?
If I send 1000 "Hello World!" UDP messages (12 bytes + 28 IP/UDP overhead), I observe that on the receiving side I only buffer 658 (always the same number, 658*40 = 26320 bytes). I do that, by sending ...
0
votes
0answers
42 views
Is there any case that web browser has no interest in my poor web server-response?
Question
I have implemented web server in C. But web server often receives sigpipe signal and dies. I'd like to understand why sigpipe error occurs. I have just learned that sigpipe is said to occur ...


