Tagged Questions
1
vote
1answer
20 views
Linux: Unix domain datagram sockets don't follow specification of connect/recv, do they?
The manual of connect says:
If the socket sockfd is of type SOCK_DGRAM then addr is the address to which datagrams are sent by default, and the only address from which datagrams are received.
...
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 ...
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 ...
-1
votes
2answers
41 views
C++ Socket Connection automatically establishing?
I am currently programming a C++ module that creates a socket server thread, which polls the accept() function every 1ms. I have a test module that spoofs a client connection that is also running. The ...
0
votes
1answer
23 views
FD_ISSET returns 0 after FD_SET
I have the following code:
FD_SET(mc_sock, &readfds);
foo = FD_ISSET(mc_sock, &readfds); // returns 1
// Wait until some socket on the set is ready to be read
while(select ...
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 ...
0
votes
2answers
25 views
recvmsg return error(EBADF) when communicate between two processes using socketpair?
I'm developing a program which do IPC's call between two processes.I create two socket fd using socketpair:
int fds[2] = {-1,-1};
if (socketpair(AF_LOCAL, SOCK_STREAM, 0, fds)) {
return NULL;
}
...
2
votes
2answers
40 views
nonblocking send()/write() and pending data dealing
when the send(or write) buffer is going to be full, let me say, only theres is only 500 bytes space. if I have a NONBLOCKING fd, and do
n = send(fd, buf, 1000,0)
here I wll get n<0, and I can ...
3
votes
3answers
34 views
How does Winsock2 listen() blocks?
MSDN says that : Listen() is a blocking call. Code snippet from a function in which i have used listen() is shown below:
sockaddr_in addr = {0};
int addrlen = sizeof(addr);
SOCKET ...
0
votes
3answers
48 views
should socket be set NON-BLOCKING before it is polled by select()?
I have the memory that when we want to use select() over a socket descriptor, this socket should be set NONBLOCKING in advance.
but today, I read a source file where there seems no lines which set ...
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>
...
0
votes
2answers
35 views
Sockets, Threads and file discriptors in Linux
I'm having some trouble with a program I wrote for Linux (some kind of a server), I'm getting the infamous "Too many open files" error.
Up until now I have thought it is a matter of sockets, but, ...
0
votes
2answers
44 views
how to check tcp peer is closed
I have a TCP network connection with remote host.(windows or linux)
if remote host process is terminated, recv() fails
an I know the connection is closed.
but, is there any way to check if the remote ...
1
vote
1answer
44 views
c++ applcation for linux to convert ipv4 packet to ipv6 [closed]
I'm looking to develope a c/c++ application for linux that converts ipv4 packet received to ipv6 and viceversa ( losing some ipv6 only features )
step 1: how to receive all necessary info from an ...
0
votes
0answers
46 views
setsockopt() returns EBUSY
I have just succesfully opened a RAW socket and I am trying to export Kernel TX and RX rings with the function below. However, setsockopt() returns EBUSY (Device or resource busy) when trying to tell ...
0
votes
1answer
46 views
DatagramSocket Broadcast Behavior (Windows vs. Linux)
Backstory:
I have a wireless device which creates it's own SSID, assigns itself an IP address using auto-ip, and begins broadcasting discovery information to 255.255.255.255. (unfortunately, it does ...
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
0answers
63 views
Connection between windows and linux machine via socket in c++
I have got a problem at connecting a Windows socket code with a Linux socket code. There cant be a connection established. I use Windows 7 and my Linux machine runs with Ubuntu. If you take the codes ...
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
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
1answer
18 views
Continuously send the content of a file through a server socket with netcat
I have a linux machine which is listening for connections on port 4450. Where there is an incomming connection, this is supposed to send continuously over the socket the content of a file. Did you do ...
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 ...
2
votes
2answers
46 views
Python Flask Socket Error (new to Linux environment)
This is likely a quick fix but I have run into a standstill and I hope you can help. Please bear with me, i'm not fluent in the command line environment.
I'm just beginning with using the Python ...
-4
votes
2answers
36 views
IPv6 address by hostname [closed]
Is there anyway to get IPv6 address by hostname? Any command in Linux? I tried NSLookup, but it doesn't have any such option. Basically, I have a C program that deals with IPv6 and I want to check if ...
-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;
...
1
vote
1answer
108 views
Linux UDP max size of receive buffer
What's the maximum size of Linux UDP receive buffer? I thought it's limited only by available RAM, but when I set
5GB for rmem_max:
echo 5000000000 > /proc/sys/net/core/rmem_max
and 4GB for the ...
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
1answer
33 views
Non blocking connect call doesn't return connection refused
I have setup a timeout on a non-blocking connect call, which timesout correctly when the connection is attempted to an address that will not respond.
However, when the connection is refused by the ...
0
votes
0answers
16 views
Broadcast through network don't work
I'm trying to write server and client apps which will communicate through sockets, but I need them to find each other in network without specifying ip addresses. I try to use UDP and send message from ...
3
votes
3answers
65 views
How many packets or bytes are in the socket receive queue?
Calling getsockopt with SO_RCVBUF will return the allocated size of the socket receive buffer.
I am curious to know if it is possible to query for how many datagram packets (or bytes) are actually ...
1
vote
4answers
53 views
How do I “disengage” from `accept` on a blocking socket when signalled from another thread?
I am in the same situation as this guy, but I don't quite understand the answer.
The problem:
Thread 1 calls accept on a socket, which is blocking.
Thread 2 calls close on this socket.
Thread 1 ...
0
votes
0answers
27 views
Image viewer (for Linux) with a socket communication?
I've spent a fair amount of time looking for a decent (lightweight) image viewer for Linux that can be controlled by another app.
The closes thing I've found thus far is Imview. It seems to be a ...
0
votes
0answers
49 views
Telnet Connection Pooling
Background: I'm currently trying to develop a monitoring system at my job. All the nodes that need to be monitored are accessible via Telnet. Once a Telnet connection has been made, the system needs ...
0
votes
1answer
33 views
How a thread service two data sockets (not control sockets) equally?
Suppose that we have a single-thread application, and it needs to service two clients by writing 1G bytes data to two separate tcp sockets (one socket per client) respectively, in this situcation how ...
0
votes
0answers
44 views
Spurious wakeups on poll / select / epoll
I am using epoll (level-triggered mode) to poll a socket fd on EPOLLPRI | EPOLLIN event.
Sometimes (actually this rarely happens but it does sometimes!!) when running my program, epoll() informs me ...
1
vote
2answers
94 views
Socket programming in Linux by C++
I am developing a C++ app in openSUSE 12.3 and one of it's part is responsible to send data to a device via Socket (in LAN). I am using this code
int sockfd, portno, n;
struct sockaddr_in serv_addr;
...
0
votes
1answer
68 views
Unable to create netlink socket: Protocol not supported
I found an example about intercepting IPv6 packets using netfilter along with libipq library.
It begins by declaring and creating an ipq_handle structure:
struct ipq_handle *h;
h = ...
0
votes
1answer
246 views
Transferring files using UDP sockets in C
I'm fairly new to socket programming in C, so the code below may have a ton of newbie mistakes.
I'm trying to make a client-server application in which the server will transfer a file to the client ...
0
votes
2answers
89 views
Make an https request using sockets on linux
How do I make an http request using sockets on linux? currently, I'm getting
HTTP/1.1 301 Moved Permanently
//etc
Location: https://server.com
here's relevant part of code(the function is too big ...
0
votes
3answers
77 views
Socket cleaning
I am a bit confused by unix sockets (TCP local)
I have a server and a client:
client sends some information to server by sockets (using send)
many times
server prints this data (server calls recv ...
0
votes
2answers
58 views
Can I assign an routing table to a process in linux? [closed]
Can I assign a routing table to a process?
Because the network requirement is very complex, there are multiple network interface in the server, and we need to specify different process to use ...
1
vote
1answer
104 views
sendto function does not use MAC address provided in struct sockaddr_ll when sending raw packets
I am trying to send an OAM ethernet frame using raw socket. I was successful in doing so.
The send function I have written is:
int send_frame(sock_info *info,char *buf,int length)
{
...
0
votes
2answers
88 views
Why SO_RCVTIMEO is inherited from listening socket to accepted socket? [closed]
I couldn't find any documentation on this except from some Python documentation
18.1.4.2. Timeouts and the accept method
If getdefaulttimeout() is not None, sockets returned by the accept() ...
0
votes
1answer
86 views
Open UDP socket between source and destination, modify it and forward it to the original destination
I am running a simple network that contains 2 nodes and a gateway. My scenario is as follows: Node1 wants to send a UDP IPv6 socket to Node2 via the Gateway which has to open the sockets, verifies ...
2
votes
3answers
124 views
redirecting output of server to client-socket
I'm going through the socket programming and implemented it well.. Now i want to implement a system call ls in it..
when the input is given as ls on the client machine, the output of the server ...
2
votes
1answer
57 views
How to use abstract names of unix domain sockets with fcgi in Perl in Linux?
In Linux, in Perl, using the FCGI module, using the Open Socket function, is it possible to create an unix domain sockets using abstract names?
I tried to create a socket starting with a null ...
0
votes
0answers
38 views
Differentiate timeout from STDIN in select()
I'm writing a program that will receive messages, receive user input(STDIN) and also send out periodic messages to other servers. So I used select() in my program. Below is the pseudocode:
// master ...
2
votes
3answers
75 views
Restart the timer in select() of socket programming
I want to use select() to receive update from other server and also send out periodic messages. Consider the following set up:
while(1){
select(... timeout = 5 seconds);
// some other code}
...




