1
vote
1answer
79 views

tcphdr field name change between OS/X and Linux

I've developed some network code on OS/X, and I'm getting bit by the renamed fields in struct tcphdr. I'm getting a bunch of errors of the form: "dpkt.c:597:36: error: ‘struct tcphdr’ has no member ...
1
vote
3answers
261 views

How to find ip addresses with BSD sockets?

I am using BSD sockets over a wlan. I have noticed that my server computer's ip address changes occasionally when I connect to it. The problem is that I enter the ip address into my code as a literal ...
1
vote
3answers
291 views

TCP sockets over wlan

I have a project that uses TCP sockets to communicate between a server and one client. As of now I have been doing this on one computer so I have just used local address of "127.0.0.1" for the address ...
2
votes
4answers
93 views

Packets Are Stacked When Sent at Regular Intervals

I am trying to send a message over a TCP socket at a regular interval (every second). Sometimes the full message will not be sent or two-four messages will be stacked and sent at once. I have if ...
2
votes
4answers
3k views

BSD Sockets - How to use non-blocking sockets?

I am trying to use non-blocking TCP sockets. The problem is that they are still blocking. The code is below - server code - struct sockaddr name; char buf[80]; void set_nonblock(int socket) { ...
3
votes
4answers
1k views

Hooking into the TCP Stack in C

It's not just a capture I'm looking to do here. I want to first capture the packet, then in real time, check the payload for specific data, remove it, inject a signature and reinject the packet into ...