A packet is one unit of binary data capable of being routed through a computer network.

learn more… | top users | synonyms

0
votes
0answers
8 views

Thread in driver don't send packets

I have this NDIS Filter Driver. I try to start in my driver a thread, that will send packet every 10 seconds. To do that, I use this code: LARGE_INTEGER TimePrev, TimeNow; void ThreadedAction() { ...
6
votes
2answers
192 views

Match a lot of patterns in Haskell efficiently

I have thought of using Haskell for a game server but when coding, I found myself looking at the part where I parse packets thinking "wow, this will result in a lot of pattern matching". This seeing ...
0
votes
1answer
12 views

Is it possible filtering (dropping) packets with Winpcap?

I want to filter (drop) incoming and outgoing packets with Winpcap library. Is it possible filtering packets with Winpcap?
0
votes
0answers
21 views

How can I formulate the communication latency in TCP/IP? [closed]

I have difficulty in deriving a mathematical model/equation to estimate the round trip latency between two nodes communicating using TCP/IP. The nodes are exchanging data based on HTTP protocol. In ...
0
votes
0answers
23 views

C dissecting protocol level 3 and application and url name in packet hex values?

We are able to capture the whole packet hex values. The issue now from the hex values we want to dissect the level 3 protocol, application level protocol and also if the url value is present in the ...
1
vote
1answer
25 views

Using NodeJS buffer

I have following code: var packet = "\xFF\xFF\xFF\xFF"; packet += "\x6D"; packet += "127.0.0.1:" + this.port; packet += "\x00"; packet += this.name; packet += "\x00"; packet += this.map; packet += ...
0
votes
0answers
33 views

Send packet python

How to do it in python? Some like this. PacketBuffer[0] := $00; PacketBuffer[1] := $12; PacketBuffer[2] := $12; 'SendPacket(ProcessID, @PacketBuffer, TRUE, FALSE);'
0
votes
1answer
23 views

Networking Sockets Theory

If two devices with different IP addresses send UDP packets through processes with different ports to the same destination device and on the same destination port, will the two packets be received by ...
-1
votes
0answers
9 views

VMware EXSI server packet loss when multi EXSI servers connect on the same switch [closed]

I have two PCs installing with VMware EXSI 5.1. CPU: I7-3770 RAM: 16G NIC: Intel 8391GT 10/100/1000Mbps IP: static IP When I just connect one EXSI server on the switch, I can ping it without ...
0
votes
0answers
5 views

Limitation of packet size by WinUsb?

I am operating a device by USB SuperSpeed bulk mode and would like to know if there exists any limitation to the packet size given by WinUsb driver. I've already noticed that sending packets with a ...
0
votes
1answer
56 views

C# Client-Server issue: client receiving packet only on close

I have a little problem. Basically I made two C# applications, a client and a server. The client connects to the server (via sockets), then sends a packet containing some text, and the server should ...
-1
votes
1answer
24 views

hex stream to UTF string with C#

i captured tcp packets by using wireshark. but wireshark can not decode bytes to UTF unicode. so i copied packet's hex stream to notepad. i have hex stream, like this ...
1
vote
1answer
43 views

Converting simulink blocks to code for a GUI?

I would like to create a GUI in MATLAB that has two sliders that can be used to adjust the value a and b. I know I can get the GUI to open simulink and have simulink do this and then packet the ...
0
votes
1answer
20 views

Number of packets ordered by IP [closed]

My server is currently under a small DOS attack. I would like to know if there is an easy way to get the list of IPs sending packets to my server, ordered by the number of packet they sent, on a ...
2
votes
1answer
47 views

Packet serialization in C++

I have a project that does packet serialization of several different types(Packet1, Packet2...). They all extend a PacketHeader class and does its own serialization This approach seems very messy and ...
0
votes
0answers
12 views

Filter packets using packet size in Ubuntu

I need to filter a protocol (ideally using iptables) that is detected using the sizes of the first piece of data sent and the first piece of data received. This is the logic: if (sentSize1 >= 50 ...
-1
votes
1answer
33 views

How can i display the http fields? [closed]

I need to read this pcap file, which is saved on my pc in a specific folder, in C# and display specific fields: time of the packet, ip source, ip destination, info (as it appears in wireshark). But ...
1
vote
0answers
50 views

Verifying checksum in IP Packet in python

I need to verify the checksum header of an IP Packet. So far I used the function checksum published in the forum, I guess the result i should get is a cero (using header and checksum) but I get 29574. ...
0
votes
0answers
36 views

Parsing packet got error: unpack requires a string argument of length

I'm parsing a packet written in a binary file. I have to retrieve each field in different variables because I have to validate them. I have an error after using struct over some fields: ...
0
votes
1answer
28 views

Extracting bit from a flow of bit string in Python

I have a binary file where a IP Packet was written. I have to create a Python program that has to validate each field in the IP Packet, so I'm trying to parse each field form the file (Ip Packet). The ...
0
votes
0answers
17 views

Compressing IP/UDP/RTP Headers in JMF

I am working on Voip application using JMF. For the low bandwidth dial up connection we need to compress IP/UDP/RTP headers (IETF standards). IETF standard RTP header compression How can I ...
0
votes
2answers
45 views

Cannot received UDP packet on Iphone w/ AsyncUdpSocket

Hi guys im working on a project at school and I got a problem, I'm able to send UDP packet to different adress but I can't read UDP packet sent to my iPhone, after receiving an UDP packet I want the ...
0
votes
1answer
46 views

How to read the buffer from a paquet (tftp)

I am currently trying to write a tftp in C. But i have some difficulties to read the packet that I sent. Here is what I have : The struct that I am sending : typedef struct { short type; short ...
-4
votes
0answers
18 views

How long does it take to deliver the entire message from the source to the destination? [closed]

A 64000-byte message is to be transmitted over a 2-hop path in a stor eand- forward packet-switching network. The network limits packets to a maximum size of 2032 bytes including a 32-byte header. The ...
1
vote
1answer
35 views

Casting pointer to reuse a buffer

there: I have declaration like this: typedef struct { quint8 mark1; quint16 content1; quint16 content2; quint8 mark2; }FrameHead; and in function,I defined a buffer,and valued ...
0
votes
0answers
75 views

Changing the incoming interface of the packet using iptables MARK and ip route commands

I was trying to change the incoming interface of the packet using iptables MARK and ip route commands. I have tried this approach which suggests the use of iptable Mark and iproute2 utilities instead ...
0
votes
1answer
57 views

Android java.lang.ClassCastException with a socket

I'm developing an android application to connect to a server. I'm having some issues with errors, the exact same application works perfectly with java swing on a standard pc. The exact error is ...
1
vote
1answer
57 views

boost::asio::async_read not reading subsequent packets

I'm trying to make a TCP Chat Server that will communicate with an already existing chat client. I don't have access to the code of the existing chat client but I know what it sends over the network ...
0
votes
1answer
66 views

Fiddler and Monitoring Web Service Traffic

I am trying to monitor a web service request and response using Fiddler. However, it seems that it is not capturing anything. How can I configure Fiddler to capture the web service call and request ...
0
votes
1answer
97 views

Pcap file replay based on the packet timestamp using scapy

I have one pcap file (~90M), and i want to replay that file. I came across scapy and it provides the way to read the pcap file and replay it. I tried following two ways to replay the packets ...
2
votes
2answers
91 views

Identification of packets in a byte stream

I'm having a bit of a problem with the communication to an accelerometer sensor. The sensor puts out about 8000 readings/second continuously. The sensor is plugged in to a usb port with an adaper and ...
0
votes
1answer
26 views

Custom xml packet in android

Can we create/construct a custom xml packet in android? I need to create an xml packet in the format shown below and send it to the server. Sending a packet to the server can be done using the ...
-4
votes
0answers
57 views

I don't know how send this packet to the server [closed]

Hi guys I have a little problem. I don't know how to send this packet to the server via C#: The packet looks like this: Now my question is how can I send the packet to the server with line-based ...
0
votes
0answers
32 views

Hash functions over IP/TCP packets

I am working on packet hashing and trying to find the most suitable function for this on a software implementation. Every packet is identified by the 5-tuple: {Ipsrc,IP dst,TCP ...
0
votes
1answer
35 views

How to understand packet lost in UDP?

How can I understand packet lost in UDP? For example in a chat application if a Sentence is not received how to understand it and warn client?
1
vote
1answer
39 views

Packet Sniffing and Sessions

Let us say that I have a website and that I created a session containing an encryption key. Can a packet sniffer such as Fiddler be able to get the contents of this session, thus compromising the ...
0
votes
0answers
36 views

ffmpeg packet data from ts file

I am kinda new to ffmpeg, but did enough homework before posting this question. I have a ts file. I want to extract individual packets from it(both audio and video). I am able to generate output file ...
0
votes
1answer
65 views

sending packets to a client given the remote_endpoint object and the socket?

Is there a way to send a packet to a client knowing the remote_endpoint object where endpoint.address and endpoint.port are used? EDIT: I added the async_write free function but I still don't know ...
1
vote
0answers
30 views

PHP increase packet size [duplicate]

Can I increase the packet size in php from php.ini file? I need to send larger packets. PHP is blocking me and giving an error: Warning: socket_write() [function.socket-write]: unable to write ...
0
votes
1answer
78 views

C++: BOOST-ASIO async_read_some does not return number of packet bytes?

I tried using following code to read the number of available bytes in the socket (on the server side) and the variable packet_bytes does not do anything. I was expecting the number of bytes used by ...
0
votes
0answers
45 views

java android send Serializable data object to USB

I have a serializable data object that I want to send as packets thru USB. It will have to be sent in 64 byte packets. In C I would set a pointer to my object and send byte by byte for the sizeof ...
2
votes
1answer
67 views

Networking - Number of Bytes Sent Through Port

I have the following code in C#: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Net; using System.Net.Sockets; namespace Networking { class ...
1
vote
0answers
32 views

Why are most UDP packets from a servlet filter not showing up in Graphite?

I have the following in a servlet filter: @Override public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws ServletException, IOException { long ...
0
votes
1answer
107 views

Erlang: {packet,N} option works for N = 0 but not 1,2,4?

The following code does work for the {packet,0} option in the gen_tcp:connect() function call but not for 1 , 2 and 4 (although I only tested it for 4 and I'm assuming 1 and 2 doesn't work either). ...
3
votes
1answer
141 views

Erlang: gen_tcp:recv() does not receive packet sent from client?

I modified this server to use gen_tcp:recv inorder to limit the number of bytes for a packet to 50. I commented out the line inet:setopts(Socket, [{active, once}]), because gen_tcp:recv is supposed to ...
0
votes
1answer
101 views

How to read IRC packets?

I'm currently using pcap in C++ to read a tcp packet. The problem is I'm confused as to how I go about reading if the packet is using an IRC protocol and then how do I read the commands that are sent ...
7
votes
1answer
374 views

Retrieving buffer/packet/payload sizes for USB serial write transfer in userspace Linux C code

Apologies in advance I won't be able to accept an answer here immediately - just thought I'd like to jot this down, while I have the problem... In brief: I can observe three different buffer sizes, ...
0
votes
1answer
98 views

RTP AAC Packet Depacketizer

I asked earlier about H264 at RTP H.264 Packet Depacketizer My question now is about the audio packets. I noticed via the RTP packets that audio frames like AAC, G.711, G.726 and others all have the ...
0
votes
1answer
199 views

RTP H.264 Packet Depacketizer

Usually for videos the marker bit of RTP Packet indicates the last packet of the RTP. So, with this it is guaranteed that I will receive 1 frame per packet or can receive more than one? In the case ...
0
votes
2answers
47 views

Is there an advantage of sending binary packets over strings?

The title says it all. Basically I'm using TCP for a client-server setup and I'm wondering if there is an advantage of transforming strings to binary before sending the data over tcp?

1 2 3 4 5 11