Tagged Questions
0
votes
2answers
57 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
35 views
bittorrent protocol by udp sockets
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
42 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
0answers
28 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>
...
3
votes
1answer
37 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
20 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
34 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
1answer
60 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
32 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
47 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
96 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
45 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
60 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
36 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
48 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
65 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
37 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
34 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
33 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
71 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
58 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
62 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
70 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
61 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
58 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
45 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
36 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
47 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
69 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
35 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
57 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
28 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
54 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
61 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
40 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
60 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
40 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 ...
-1
votes
0answers
31 views
Help With Socket Programming In C [closed]
So, today i thought i would try something new, and play with windows sockets. I found a tutorial on the internet http://www.binarytides.com/winsock-socket-programming-tutorial/
Problem is, that ...
0
votes
1answer
27 views
What's the better way: 1 pipe and 1 socket, or 1 socket?
I have a server-program which processes audio-data and passes it thru to the audio-drivers.
The server-program copies the audio-data and puts the copy in a named FIFO in a seconds thread.
If there ...
0
votes
2answers
33 views
Packet forwarded to destination, but application doesnt receive
I am trying to run a simple client-server program on my machine. It works fine if both client and server are on the same system. But if the client is on another system and server is running on mine, ...
1
vote
2answers
112 views
Using asynchronous sockets for server handling multiple clients
I have developed a single server multiple client udp application using multithreading. I want to switch to a single processor system now so multithreading will no more help me :(
Now I want to ...
1
vote
1answer
208 views
Raw UDP socket get stuck on recvfrom
i'm sending dns packet (type A) over raw socket. I get good result from my default DNS server
the problem is that my code get stuck in "recvfrom" , i can see the outgoing request packet and the ...
5
votes
3answers
360 views
strange behavior with showing images using OpenCV and Qt
I'm capturing images from a Cam using OpenCV C API and send them using TCP sockets.
The server is running C++ (QT) and receive the frame.
The process is working fine and I can see the images on the ...
2
votes
1answer
338 views
Socket loses connection on send()
EDIT : Scroll down to see the updated code.
I would like to build a fake player for Minecraft, in the C language.
My Minecraft server (bukkit) is listening on the port 25565, on my local IP ...
7
votes
1answer
1k views
Does SO_RCVTIMEO affect accept()?
Does the SO_RCVTIMEO option affect accept (causing it to return EAGAIN or EWOULDBLOCK if the timeout expires)? Is there any behavior specified by the standard? I can't find it in the documentation for ...
0
votes
2answers
2k views
When i do getaddrinfo for localhost, I don't receive 127.0.0.1
I am still learning sockets and am unclear why this doesn't print out 127.0.0.1. Even if I replace the word localhost with 127.0.0.1 I receive some other ip's which I guess are my router or something. ...
2
votes
2answers
2k views
getsockname always returning 0.0.0.0?
Here is the code. It is the same as the code from this similar question: http://monkey.org/freebsd/archive/freebsd-stable/200401/msg00032.html. When I run it I always get the output:
listening on ...


