0
votes
1answer
23 views

Calculating TCP Checksum in a netfilter module

I am trying to change some fields in the IP and TCP header in a netfilter postrouting hook, however I can't seem to get the kernels TCP checksum function to work properly to amend it afterwards. The ...
0
votes
1answer
45 views

TCP Checksum Calculation Changing - tcp offloading is disabled

I am manipulating TCP packets using netfilter, so I have to recalculate the TCP and IP checksums which is working as expected. Wireshark reports the checksums are correct on the way out of the ...
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
33 views

C - Linux - kernel module - TCP header

I'm trying to create linux kernel module, that will inspect incoming packets. At the moment, I'm in process of extracting TCP header of packet and reading source and destination port -> However I'm ...
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
2answers
42 views

Measure tcp-connection speed

I want to write simple unix-application that measures tcp-connection speed. So I have: server listens on specified port, accepts connections and measures speed client sends messages (continuously) ...
0
votes
1answer
74 views

Simple TCP server with multiple clients C/unix

I'm having problems understanding socket programming and need some help. I am suppose to modify my server code that I have written to accept 3 clients. I know I am suppose to use a fork for each ...
3
votes
2answers
82 views

Basic C Server: Connection Refused Error

I have a program that should accept a connection at port 62085 and sends back a test message. The code hangs at accept() and never returns even if the client tries to connect. Why does the server ...
-1
votes
2answers
47 views

Socket checksum issue

This may be a straightforward solution but basically I am sending a binary file piece-by-piece to another program using TCP and checking to make sure the checksum matches for validity. The problem is ...
-1
votes
1answer
49 views

How can i stop tcp/ip packet? [closed]

kind of load balancer. I need to know, is it possible to grab a packet from the NIC and then destroy it so it won't progress up the tcp/ip stack? I want to be able to stop it so that the PC where the ...
1
vote
2answers
60 views

Error communicating a c server and a java client

I'm trying to make a little tcp echo server with multithread support in C and a client written in java, both communicating using sockets. The communication starts just fine but somehow the strings ...
0
votes
1answer
33 views

how to kill a tcp connection in a tcp server program if no FIN/ACK or RST received

I wrote a tcp server program(linux c) and run it on host B if host A establishes a TCP connection with host B then A shutdown without sending FIN/ACK how do I write source codes inside tcp server ...
3
votes
4answers
70 views

What is the minimum size of data guaranteed to be sent in a single call of send() (tcp sockets)? [duplicate]

After select returns with write fd set for a tcp socket. If I try to send data on that socket, what is the minimum guaranteed size of data to be sent at once using send api? I understand that I have ...
0
votes
2answers
46 views

Transmitting data over TCP always stops at 251 transmits

I am transmitting integers over TCP I have been working at getting this to work correctly for a couple days now and I am very close. What I am doing is taking input from a USB joystick and sending the ...
0
votes
1answer
38 views

How do I properly determine if my client is still connected to the server with C sockets?

I have a client connected to a server via C Berkeley sockets. I (try to) periodically check to see if the connection is still valid by calling recv() on the socket with MSG_DONTWAIT and MSG_PEEK. ...
0
votes
2answers
82 views

sending more than 65536 byte with TCP applications

I would like to know, how can two easy programs that transfer a text file from the sender to the receiver, send more than 65536 Byte (the maximum size of an IP packet). This is the sender: FILE ...
0
votes
1answer
37 views

how to finish complete 4 steps of tcp teardown in network programming

in network programming, I wrote 2 TCP programs A and B when a tcp connection is established betweeen A and B if I want to close it, I can use the following code snippets on A: int main(){ ...... ...
0
votes
1answer
65 views

tcp connection can't be established when there is a tcp connection with state `TIME_WAIT`

I wrote a simple tcp client and server and ran them I notice that when I use ctrl+c to end the program the tcp connection be be closed but the tcp connection state is like TIME_WAIT then if I run the ...
0
votes
1answer
45 views

How can i connect to my friend through internet with sockets?

I've written the game on C with sockets which perfectly works on LAN, but how can i connect to my friend through internet? Our ip addr. are dynamic, but even so (i can recompile program with current ...
0
votes
0answers
139 views

Issue with multi-threaded tcp/ip server when dealing with multiple clients

I'm having a bit of an issue with a multi-threaded TCP/IP server I'm writing in C. I need it to accept connections from multiple clients and the clients will input an integer which is added to a total ...
0
votes
1answer
44 views

when blocking `recv()` or `recvfrom()` returns in the case of tcp

when blocking style recv() or recvfrom() are used , as below while(1){ recv(sock_fd, buf, n, 0); // when it returns and continue to execute the next line do_something(); ..... ...
0
votes
3answers
79 views

blocking recv() that receives no data (TCP)

I'm attempting to write a simple server using C system calls that takes unknown byte streams from unknown clients and executes specific actions depending on client input. For example, the client will ...
0
votes
0answers
85 views

TCP/IP C Video Streaming on a browser without using webapplication

My title may be a bit confusing as I am at the moment. Say I have an IP camera. I have a system 'server' [consider an embedded system with low config and with OS linux]. I have another systems ...
0
votes
1answer
64 views

first tcp echo client cant communicate with second tcp echo client(Bad file descriptor)

My application is Multiuser Echo chat program. If a client sends message the server sends to all clients including the client from which the message originates. It is implemented in c. server forked ...
1
vote
1answer
46 views

synchronisation in tcp chat client

My application is a multi-user chat room. The server just sends the received message to all clients (echoed to all client including the one from which the received message originated). For each ...
-1
votes
3answers
93 views

Using select instead of fork

After looking at Beej's guide to network programming, I am trying to redo my server.c using select instead of fork. I am not too sure what is going wrong; my program compiles, but doesn't accept ...
-1
votes
1answer
85 views

C File Transfer between a Windows computer and a Mac/Linux computer?

If I have a Windows computer and a Mac computer or a Linux computer, is there a recommended library way to transfer a file between them that doesn't involve FTP, passwords, etc. For example: ...
1
vote
1answer
204 views

c socket file transfer

Let me start by saying this is a homework assignment and I am not a c programmer. I have been working on this for days and I am stuck. I have read the beej guide from cover to cover and have been ...
-1
votes
2answers
45 views

Processes not terminating

There are some strange things happening in my client-server application. Please, look at these simple fork client/server: CLIENT: #include <sys/types.h> #include <sys/socket.h> #include ...
2
votes
1answer
194 views

C Client Server echo program displays invalid messege in client

I'm new to socket programming and C as well. I'm creating a simple echo client server application which supports multiple clients using threads following a tutorial. In the application everything ...
0
votes
1answer
94 views

How to force-quit a CLOSE_WAIT socket in Python?

I'm using a pile of sockets in my Python script, perhaps 20/s. The are ephemeral, done in three seconds. I've tried to do a good job of sending socket.close() to everything, but for some reason ...
0
votes
2answers
130 views

Sending multiple messages over a TCP port

I have a program that creates a socket (server and client program) and sends a message via a TCP port using that socket. My question is, how can I exchange multiple messages? Every time I send a ...
0
votes
0answers
79 views

SCTP association 3-streams vs. 3 TCP connections

Me and one of my friends are trying to realize this simple client-server application. We observed the performance and we noticed that, in order to transfer 3 files, a singole SCTP association ...
0
votes
2answers
51 views

writing data to a socket that is sent in 2 frames

My appliactions sends through the wire using socket small messages. Each message is around 200 bytes of data. I would like to see my data sent in 2 frames instead of 1. My questions are How to do ...
1
vote
2answers
411 views

Linux C TCP Socket client/server with redirected output application

Let me start out by saying that this is a homework assignment for an operating systems class and I am not a programmer, especially not in C. I've been at this for a week now and I am simply stuck and ...
0
votes
2answers
121 views

is it possible to get the TCP sequence number of SYN/ACK packet in TCP 3-way handshaking?

I have a tcp client program when it initiates a 3-way handshaking with a remote tcp server by sending a SYN it will receive a SYN/ACK from the server, is it possible to read the sequence number and ...
0
votes
2answers
86 views

What is TpCallbackMayRunLong()?

I am gettign a segmentation fault in this function but have no idea what it does,why it segfaults, or even where my code calls it. Can anyone shed some light? C code in Windows using Netbeans IDE and ...
2
votes
0answers
117 views

WinPCAP C++ Sending packet

So, I want send packet over TCP by using by pcap_sendpacket TCP_Packet.Set_Ethernet_Source_MAC(1, 1, 1, 1, 1, 1); TCP_Packet.Set_Ethernet_Destination_MAC(2, 2, 2, 2, 2, 2); ...
0
votes
2answers
46 views

C -writing and reading from sockets [closed]

I have to send two bytes using a tcp socket in c. My try so far: static void send_request(int sockfd) { uint8_t buffer[SEND_BYTES]; uint8_t requestLowByte = 0; uint8_t requestHighByte ...
0
votes
1answer
56 views

Sending/Handling partial data writes in TCP

So, I have the following code which sends out my packet on TCP. Its working pretty well. I just have to test partial writes. So I write 1 byte at time either by setting sendbuf to 1 or do a hack as ...
0
votes
0answers
128 views

Sending a 2d integer array over TCP socket in C

I want to send a 2d integer array to a server for matrix multiplication. But the problem is that i receive a 2d array of zeros in the server. here is my attempt Client: int a[2][2] = ...
2
votes
2answers
99 views

Writing on a TCP socket closed by the peer

I have a client-server application where each side communicate with the other via TCP socket. I properly establish the connection and then I crash the server BEFORE any data is written on the socket ...
1
vote
1answer
139 views

C language. TCP server-client, string passing error

I have a problem with passing string as the argument to my client, and I new to C so can't really figure out what is going on. I managed to pass a character to server, but got problem with strings. ...
1
vote
4answers
160 views

How many bytes can I write at once on a TCP socket?

As the title says, is there a limit to the number of bytes that can be written at once on a connection-oriented socket? If I want to send a buffer of, for example, 1024 bytes, can I use a ...
3
votes
3answers
216 views

Why doesn't client's close() of socket cause server's select() to return

[I asked something similar before. This is a more focused version.] What can cause a server's select() call on a TCP socket to consistently time-out rather than "see" the client's close() of the ...
4
votes
1answer
170 views

Check number of correctly received packets - Socket Programming

I am writing an application in C using socket programming. I wish to send the data from the server node to the client node. I use the read and write commands on the socket descriptor to get and send ...
1
vote
1answer
96 views

TCP header port number occasionally 0

I'm trying to write a simple application to output dst and src TCP port numbers. To test I've tried to apply a pcap filter to only sniff packets to or from port 80. However, I keep getting port ...
-2
votes
2answers
78 views

HTTP Server from scratch [closed]

I'm trying to write my own HTTP server, just for fun and learning about more about HTTP, sockets, and threading.Check out the follwing code for a simple HTTP server that i wrote in C using TCP-socket ...
1
vote
1answer
67 views

what are the changes to be made in order to convert tcp progrem into udp [closed]

#include<stdio.h> #include<stdlib.h> #include<string.h> #include<sys/types.h> #include<sys/socket.h> #include<netinet/in.h> #include<poll.h> ...

1 2 3 4 5 10