Tagged Questions
0
votes
1answer
35 views
curl: unsupported protocol(https) in CentOS6 - related with jansson
I am following jansson tutorial below.
https://github.com/akheron/jansson/blob/master/doc/tutorial.rst#id2
while I code like tutorial, I faced a problem.
this jansson thing uses curl library, and ...
4
votes
3answers
61 views
Data transfer protocol between different platforms
I need to implement rather simple network protocol: there is device with microcontroller (language is C) and Java application, they should communicate: I need to implement firmware update, and maybe ...
0
votes
1answer
73 views
libuv - How to use binary protocol
I have client-server application when communicotion by simple binary protocol. The binary protocol have 12 byte header (see code) when four byte is length of data [datasize] and data block size of ...
0
votes
3answers
57 views
While Loop Not Iterating Correctly
I'm working on a computer networks project to simulate the TCp/IP model and I'm having a really weird issue. It's pretty simple, but I just can't figure out what's wrong with my code. Inside my ...
1
vote
2answers
67 views
Strategy for protocol frame decoding
I have the following issue: I'm programming micro controllers (ATmega 8bit, 8051, etc...) in C and receive a custom bus-protocol over the UART interface. I put the received bytes into an buffer and ...
0
votes
1answer
189 views
Selective repeat protocol for file transfering
Could you please help me with an algorithm for selective repeat protocol file transferring good documentation?Is there any book for protocol programming just like Beej guide for Network Socket ...
1
vote
2answers
98 views
linux c sockets
good evening, I am a newbie in using linux sockets under the c programming language.
for now I'm trying to make a client communicate with a server. basically the thing i'm stuck at is making the ...
1
vote
0answers
83 views
Linux Kernel Module / Protocol Registration
My question is regarding Linux Kernel Module Programming, AF Registration, and Protocol Registration (e.g. AF_INET , sock_stream).
Goals:
I want to create a new Address Family and register it in ...
0
votes
1answer
161 views
ASN.1 compilers
This is my first question so please bear with me, I'm trying to find a good compiler to parse the following standard, I've tried asn1c and I wasn't able compile it successfully, the problem is that I ...
0
votes
1answer
126 views
Decoding a binary signal
I'm reading the following binary signal off a gpio pin on my Raspberry Pi (it's the output from a weather station).
The 1st column is binary high or binary low. The second column is how long ...
5
votes
1answer
468 views
Portable hard real-time C or C++ raw Ethernet protocol library
I am trying to create a hobbyist portable robotics library (Windows and Linux) that has hard real-time capabilities. It should be able to connect over standard Ethernet to a microcontroller, upload ...
-1
votes
1answer
61 views
extract coap query
I need your help in extracting the query value in a coap message.The coap message looks like
coap://[ff08:90:5001:0:0:0:0:1]:12345/c?a=4
decoded packet is 52 02 00 00 91 63 63 61 3d 34 . Here 63 ...
1
vote
2answers
364 views
How can I read in M-bus metering data with an Arduino Uno?
I am trying to send data from a Kamstrup Multical 601 to an Arduino Uno using the M-bus protocol.
I am considering trying to use the libmbus c libraries to do this. However, I do not have a lot of ...
2
votes
2answers
87 views
Secret server protocol keeping software free [closed]
I am currently learning about basic networking in C, and I'm interested in an "obscure" part of Internet: secret protocols.
Let's say I develop a multiplayer online game. I would design my own ...
0
votes
2answers
189 views
Wireshark - programatically modify packets from pcap file
I have a series of packets in a pcap file with various protocols, such as GTPV2,S1AP,Diameter etc etc. I need to know if there's a way to modify some fields programatically, for instance:
for the ...
1
vote
2answers
125 views
Protocol Checksum [closed]
i have onr protocol of the format
\003LLCCDDDD..DDXX
LL: Total packet length not including the attention byte.
CC: The command code.
DD: Data bytes (in HEX ASCII).
XX: The checksum of LLCCDDDD..DD ...
0
votes
1answer
484 views
Why does my server always respond “No certificates”?
I'm trying to use an SSL client/server example from: http://simplestcodings.blogspot.com.br/2010/08/secure-server-client-using-openssl-in-c.html to create a secure connection using SSLv3, without ...
2
votes
1answer
321 views
Communicating with a socket using MAC address from Embedded FPGA
I have a small FPGA that needs to communicate with a C program running on a Ubuntu Machine via ethernet. The FPGA is too small to use TCP etc. I can send frames and pick them up in wireshark using ...
1
vote
3answers
208 views
How do I get started writing my own IP-Like Protocol?
So my question is, would it be possible to write a protocol which does the same as the Internet Protocol, and if so, how do I get started? And don't say, "isn't the Internet Protocol good enough?", ...
1
vote
1answer
170 views
detect eap pakets (802.1X auth) with pcap libraries
i'm writing a c sniffer with pcap (on my own recorded .cap streams).
I need to detect eap packets, which carry 802.1X authentication, but i don't know how to distinguish them from other packets.
...
0
votes
1answer
557 views
One Socket Multiple Threads
I'm coding a part of little complex communication protocol to control multiple medical devices from single computer terminal. Computer terminal need to manage about 20 such devices. Every device uses ...
1
vote
1answer
120 views
Is there some difference between parsing network and parsing a file?
I am writing a tool to dump redis 's rdb data file. I send a 'sync' command the save as a slave. and then parse the rdb to keys,values.
However, I can not parse the rdb when directly read from the ...
3
votes
3answers
159 views
How to author an Internet protocol?
We're all familiar with popular protocols like IMAP and POP, used for email messaging.
I have a plan for a new protocol, but I'm not sure to go about implementing it.
Is the protocol a collection of ...
1
vote
1answer
291 views
how to parse MDNS response?
We have some devices (Like IP cameras) on network. I am writing APIs in C to find these cameras. These cameras support multicast DNS query. I have the format for query, but I do not have the general ...
3
votes
2answers
145 views
Protocol of a packet
I'm programming an offline packets decoding program in C under Windows 7 x86.
I wonder how it is possible to know packet protocol, either if it is UDP or TCP?
0
votes
4answers
333 views
HDLC Extended Addressing
Can any one please provide me with good resource information about where and how I can understand the encoding of the "Address field" (in an HDLC frame) into Octets, using the extended bit (bit 0), in ...
3
votes
2answers
471 views
HDLC Frames - Octets/modulo 8 doubts
I am trying to implement the HDLC frame format type 3 and I have some doubts as regards Octets/Modulo 8 encoding of frames.
Firstly, Is the HDLC frame transmitted entirely in Octets?
What do they ...
-3
votes
1answer
160 views
C language application for data communication [closed]
I am planning to develop an application (could be in C or Ada!!) to exchange the data between two computers.
Please help me out to start this work.
1
vote
2answers
694 views
Strange Linux socket protocols behaviour
I'm a little confused about the difference between the definitions of protocols on Linux when using socket(). I am attempting to listen for connections over TCP using socket(PF_INET, SOCK_STREAM, ...
0
votes
1answer
248 views
How to make 1 byte from 8 bit samples in java or c?
I have 8 bit samples with random values (called headers) and I have commands with hexadecimal values, see bellow:
[8 bit][command]
\ |
\ \------------------ [01 30 00 00 = hex start the ...
1
vote
3answers
448 views
Generating packets
I want to know how to generate a packet in c. Supposed we have a type as follows:
struct ipheader {
int version;
int hdLen;
int tos;
int totLen;
int id;
......
int dstIp;
...
5
votes
1answer
1k views
Where to find a comparison of Flex/Bison, Ragel, ANTLR and others?
I am intending to define a protocol similar to Open Sound Control, but a bit different.
The idea is quite complex, and I won't try to describe it here.
Suppose I was to implement an OSC library ...
1
vote
4answers
2k views
how to write(implement) Application layer network protocol
I want to write(implement) a Application layer network protocol above TCP. Can you tell me how to start doing it?
Any online tutorial will also be helpful
guys i need sm implementation tutorial too. I ...
0
votes
1answer
2k views
example code, documents on MCP23017 (16 pin IO extender, I2C) as an 7-segment LCD driver
the MCP23017 from Microchip is an I2C based 16-pin IO extender. I have been able to set up the device once (set pin direction and values), but after that i cannot change the values as expected unless ...
0
votes
2answers
2k views
Redeclaring/extending typedef defined in Objective-C protocol in class conforming to protocol
I have an Objective-C protocol:
typedef enum {
ViewStateNone
} ViewState;
@protocol ViewStateable
- (void)initViewState:(ViewState)viewState;
- (void)setViewState:(ViewState)viewState;
@end
...
8
votes
5answers
915 views
protocol parsing in c
I have been playing around with trying to implement some protocol decoders, but each time I run into a "simple" problem and I feel the way I am solving the problem is not optimal and there must be a ...
2
votes
2answers
226 views
Confusion on recvfrom() in an application level protocol design
Assume Linux and UDP is used.
The manpage of recvfrom says:
The receive calls normally return any data available, up to the requested amount, rather than waiting for receipt of the full amount ...
1
vote
1answer
236 views
How to find whether the MORE FRAGMENTS field is set or no?
Given this header , how do I find if the MORE FRAGMENTS field is set or not..
struct sniff_ip {
u_char ip_vhl; /* version << 4 | header length >> 2 */
...
1
vote
8answers
2k views
How to write a simple text based protocol, preferably in C
I want to write a client program that communicates with the application server via standard TCP/IP. The client can speak to the application server and be authenticated by simply speaking in a ...
18
votes
5answers
3k views
A good serial communications protocol/stack for embedded devices?
After writing several different custom serial protocols for various projects, I've started to become frustrated with re-inventing the wheel every time. In lieu of continuing to develop custom ...
2
votes
8answers
390 views
binary format to pass tabular data
I'm maintaining a legacy embedded device which interacts with the real world.
Generally speaking, this device collects data from sensors, processes the data using its internal algorithm, and displays ...
2
votes
4answers
268 views
What are the most frequently used flow controls for handling protocol communication?
I am rewriting code to handle some embedded communications and right now the protocol handling is implemented in a While loop with a large case/switch statement. This method seems a little unwieldy. ...
1
vote
4answers
666 views
Byte level length description
I have a protocol that requires a length field up to 32-bits, and it must be
generated at runtime to describe how many bytes are in a given packet.
The code below is kind of ugly but I am wondering ...