Tagged Questions
The packets tag has no wiki summary.
9
votes
6answers
328 views
Object-oriented networking
I've written a number of networking systems and have a good idea of how networking works. However I always end up having a packet receive function which is a giant switch statement. This is ...
4
votes
4answers
1k views
C code to generate and send a packet
I would like to know about the inbuilt library functions in C to build a complete packet(along with frame) and to send it over a network... Can any one upload the C code which does the above stuff... ...
3
votes
6answers
190 views
How bad it is to keep calling malloc() and free()?
I'm sending a text file - client-server
breakup the text into packets each of 512 bytes
but some packets contain text less than max size so on the servers side when receiving each packet I'm calling ...
3
votes
2answers
81 views
How far out of order should I expect UDP packets to be?
Under normal circumstances, what should I expect the worse case scenario to be for out of order UDP packets?
I'm currently tagging each packet with two bytes (a 0 to 65535 number) to keep track of ...
3
votes
3answers
1k views
When I send a packet over tcp, it is split into two packets
I am developing an application in C#, using the server-client model, where the server sends a byte array with a bitmap to the client, the client loads it into the screen, sends an "OK" to the server, ...
2
votes
3answers
64 views
Split message in serial communication
I am new to serial communication. I have read a fair few tutorials, and most of what I am trying to do is working, however I have a question regarding serial communication with C#. I have a micro ...
2
votes
2answers
103 views
how to calculate packet time from latency & Bandwidth
i have a link between a host and a switch
the link has a bandwidth & a Latency , how to calculate the time of 2 packets (with size 1KB) to be transfered from (Host A) to (Switch 1)
here's the ...
2
votes
2answers
224 views
Ensuring no packet loss between TCP client and server
I am writing a Java TCP client which sends chunks of data to a C server. The client-server worked very well on my development PC. This code upon deployment on a hardware board showed packet loss. I ...
2
votes
5answers
220 views
Sending IP packets
I'm lost. I've been searching the web for days now and I just can't find the answer. I'm more or less a beginner socket programmer but I do understand it.
I want to do the following things:
Create ...
2
votes
1answer
322 views
Sending arbitrary (raw) packets
I've seen it asked elsewhere but no one answers it to my satisfaction: how can I receive and send raw packets?
By "raw packets", I mean where I have to generate all the headers and data, so that the ...
2
votes
2answers
196 views
Implementing packet timeout c++
For a computer networks project, we are writing an ftp server in c++ with different window protocols. We are having issues implementing a working timeout function. The gist of it is to set a timestamp ...
2
votes
1answer
331 views
Erlang binary byte length
I have binary for example:
<<32,16,10,9,108,111,99,97,108,104,111,115,116,16,170,31>>
How can i know what length of this packet?
Thank you.
2
votes
2answers
435 views
Transmission of float values over TCP/IP and data corruption
I have an extremely strange bug.
I have two applications that communicate over TCP/IP.
Application A is the server, and application B is the client.
Application A sends a bunch of float values to ...
2
votes
3answers
448 views
What happens with TCP packets between two Socket.BeginReceive calls?
I have a doubt about socket programming. I am developing a TCP packet sniffer. I am using Socket.BeginAccept, Socket.BeginReceive to capture every packet, but when a packet is received I have to ...
1
vote
3answers
86 views
Network Data Packing
I was searching for a way to efficiently pack my data in order to send them over a network.
I found a topic which suggested a way : http://www.sdltutorials.com/cpp-tip-packing-data
And I've also seen ...
1
vote
1answer
295 views
Packet modification with netfilter queue?
I'm currently trying to use codes with libnetfilter_queue in userspace to modify packets that were queued in the NFQUEUE target in iptables. However I have little idea as to how to go about doing it.
...
1
vote
3answers
228 views
Network UDP broadcast design?
I am working on a C++ server/.NET client applications couple in which my server (which runs the c++ on linux) broadcasts a message to show it's alive to the whole network and my .NET program listens ...
1
vote
1answer
46 views
Tracking connections and packets of a program
I hope this is quite a simple question.. I've got a compiled .exe program on windows, and I know that it connects to some php resource on some web server and fetch some data. They are just one or two ...
1
vote
0answers
142 views
how can I use KDD 99 data set in snort? [closed]
Can anybody guide me in using KDD 99 data set in snort and check the efficiency of snort?
1
vote
1answer
375 views
How to convert KDD 99 dataset to tcpdump format?
Can anyone guide me in converting the KDD 99 dataset,consisting of ip packets in the following format to TCP dump format?
...
1
vote
1answer
256 views
problem in receiving MAC ID broadcast UDP packets
In my case, from a hardware UDP packets are sent to destination PC - 192.168.13.250 (45141) but MAC ID is FF:FF:FF:FF:FF:FF. Now I binded to that destination IP & port no using sockets. But I'm ...
1
vote
1answer
347 views
pcap function: pcap_open() question
When I successfully find a device on my computer, and make the call to pcap_open(...) Is this giving me packets only going to and from my computer? What about other computes on the network? Does it ...
1
vote
3answers
188 views
Split up python packets?
Is there a way python can distinguish between packets being sent ? e.g.
python receives data
it process data
clients sends first packet
client sends second packet
python receives data, can i ...
1
vote
2answers
2k views
How to set the maximum TCP mss (Maximum Segment Size) on Linux?
A simple question:
In Linux, how do you set the maximum segment size that is allowed on a TCP connection? I need to set this for an application I did not write (so I cannot use setsockopt to do it). ...
1
vote
2answers
473 views
When do USB Hosts require a zero-length IN packet at the end of a Control Read Transfer?
I am writing code for a USB device. Suppose the USB host starts a control read transfer to read some data from the device, and the amount of data requested (wLength in the Setup Packet) is a multiple ...
1
vote
1answer
166 views
Is Socket ReceiveFromAsync implicltly multi threaded?
I'm currently working on a high performance Raw socket application.
I'm using ReceiveFromAsync to receive packets. This may sound like a silly question, but is this implicitly threaded? I'm not sure ...
1
vote
2answers
681 views
Broadcast a UDP message in LAN with fake source IP with delphi
I want to broadcast a UDP message in my LAN with fake source IP ( spoofing )
1. Do winpcap able to do this ?
2. Do this work on winxp, win7 ?
3. i'm using delphi, is there any good components ...
1
vote
2answers
483 views
Is it possible to craft your own packets with python?
Well, I know its possible, using external libraries and modules such as scapy. But how about without external modules? Without running the script as root? No external dependencies?
I've been doing a ...
1
vote
2answers
278 views
how to send data to server with the same TCP connection using ajax or JS trick
I know how to keep a connection indifinetely open server side to stream continuously data to javascript.
BUT
I do not know how to send data reusing the same TCP from browser to server.
so there is not ...
1
vote
1answer
119 views
How to implement a bidirectional “mailbox service” over tcp?
The idea is to allow to peer processes to exchange messages (packets) over tcp as much asynchronously as possible.
The way I'd like it to work is each process to have an outbox and an inbox. The send ...
1
vote
1answer
183 views
How can I capture and print packets from the internet on Windows?
How can I capture them?
Is there any module/lib to do it?
Please if it do, post an example
1
vote
5answers
2k views
Decoding tcp packets using python
I am trying to decode data received over a tcp connection. The packets are small, no more than 100 bytes. However when there is a lot of them I receive some of the the packets joined together. Is ...
1
vote
3answers
2k views
C# Getting packet data
I've been trying to write a script that will sniff HTTP headers. So far I've got the socket bound to port 80 and packets seem to be received, but I can't get them into string form. All that outputs is ...
1
vote
1answer
168 views
New not allocating enough memory?
Well, I'm taking packets straight off the wire and extracting TCP streams from them.
In the short, this means stripping off the various headers (eg, eth->IP->TCP->stream data).
In the function ...
0
votes
1answer
22 views
Parsing packets captured using wireshark for management frames identification using libpcap or similar library
I want to parse packets captured by wireshark offline using libpcap. I am capturing packets from a wireless network in monitor mode. I have read that "libpcap" can be used to capture and parse packets ...
0
votes
1answer
55 views
How to sent arp packets to queue from arptables
My aim was to find a way to process(drop,accept,forward and etc.) packets that are from Layer 2 ...
I know that "iptables" in *inux allow us to send packet to "NFQUEUE" for further packet processing ...
0
votes
0answers
47 views
Sending subscribe/unsubscribe packets to xmpp server from android
I am new to XMPP and trying to built the chat application in android platform. After going through the different tutorial and from the help of stackflow I am able to connect to the server. I am using ...
0
votes
2answers
66 views
controling network communication
I need to develop an Android application that sets up connection via WiFi with computer and then sends packets with data. Jowever, I need to control send packets, not only theirs data but also ...
0
votes
3answers
76 views
Occurrence of a 0x90 (NOP) sequence in legitimate code
The background:
I've written a python script to inspect IP packets, specifically the payload/data of a packet in order to detect if it could be used in a buffer (stack) overflow. Now as I understand ...
0
votes
2answers
57 views
Multiple UDP packets at a socket
Suppose I have a server with multiple clients (UDP). Whenever it receives a packet from a client, the server will spend 1 second processing the packet and send out that a new packet to all clients ...
0
votes
0answers
63 views
MS Excel Program or Add-in to do wave forms and data packets
Looking for Excel to design a square wave form and also data packets and to be able to overlay one over the other. Maybe an add-in or proprietory software. Want to design, convert data to binary ...
0
votes
0answers
56 views
Getting data from nfq_get_payload
When I use 'nfq_get_payload(nfqData, &data);' and then print 'data', all I get are E's, is there something else that I should be doing to get the payload?
ret = nfq_get_payload(nfqData, ...
0
votes
1answer
51 views
Networking/international hosted pings and traceroutes
I am working on a project involving correlations in distance of the server in relation to pings and traceroutes. So I am getting the number of hops and the average ping time for different web sites. I ...
0
votes
1answer
82 views
UDP Tx loop stops working every time at exactly 3970 packets, 14386 on my friends computer
I've been stuck at this issue for the last 4 days and I can't seem to figure it out. I'm trying to send data to myself using UDP packets so another program can read the bytes.
I can clearly read the ...
0
votes
1answer
219 views
How to send packets in C#?
I've read some on the internet, and I'm wondering how to send packets over TCP in C#. This is what I've done so far:
TcpClient client = new TcpClient("myipaddresssecret", 7172);
...
0
votes
1answer
74 views
How do I packetize bursts of data into a continuous dial-up style connection?
I am working on a project where I need to convert bursts of data (in the range of 300 bytes) from Iridium's short burst data service . This is meant to replace a dial-up connection, so I need to take ...
0
votes
1answer
230 views
Decoding IPFIX packets using BitArray C#
Following on from my previous thread, I seem to be closer to decoding IPFIX data from a Sonicwall firewall using a UDP listener and a BitArray in C#.
I now get data in my BitArray but it doesnt make ...
0
votes
1answer
87 views
simulating packet losses and delays programmatically
I have a server that exposes its services over rpc and a client that uses these services. To test this setup, I need to introduce packet losses and delays. I found a few techniques on stackoverflow ...
0
votes
0answers
15 views
Why network packets include '\x$(number)' notation?
why sockets include '\x$(number)' notation, instead of '0x$(notation), when representing hexadecimal values?
0
votes
3answers
332 views
UDP C Server not receiving packets
I know that there are related questions already answered, but I didn't manage to solve my problem.
I have a simple UDP client-server app. Both the client & server look ok, however the server ...