0
votes
3answers
24 views
Enhancing an ASCII protcol with multilingual fields
I am enhancing a piece of software that implements a simple ASCII based protocol.
The protocol is simple... here is an example of what the messages look a little bit like (not the …
2
votes
2answers
28 views
Dividing file to be processed partly, then batching results
Please,
We have the following situation:
Component X that divides a request file into parts, sending each part to an independent processing component Y -through a network- that …
0
votes
0answers
25 views
The most efficient DHT
What is the most efficient DHT? I am looking for name and/or some kind of implementation or related work, but I am not looking for the one that is most used.
Efficient in terms of …
2
votes
5answers
62 views
Tips on building a byte protocol
I'm communicating data between devices, and I have to program the protocol as an array of bytes.
Any tips when building protocols at a low-level? .. Eg:
Use a 2 byte header, to …
2
votes
4answers
226 views
Is TCP Guaranteed to arrive in order?
If I send two TCP messages, do I need to handle the case where the latter arrives before the former? Or is it guaranteed to arrive in the order I send it? I assume that this is not …
0
votes
2answers
71 views
Telnet server -> backspace/delete not working
Hi,
I'm implementing a simple proof of concept Telnet server in C# and telnet to it via the windows built in telnet client.
I echo all non IAC data back to the client. However, I …
0
votes
0answers
22 views
HTTP 303 redirect is not working for my browsers
My jersey resource is sending this to the client browsers namely (safari & chrome) but the browsers are not redirecting. Is there anything wrong with my HTTP response below ?
…
1
vote
1answer
39 views
Objective-C Protocols within Protocols
I recently began trying my hand at using protocols in my Objective-C development as an (obvious) means of delegating tasks more appropriately among my classes. I completely underst …
8
votes
9answers
528 views
Vote for the best protocol for the given scenario
Hello!
I have a design decision to make. I need your advice.
Requirements:
A server and a client. client is typically a mobile phone.
Connected through the Internet.
Server and …
1
vote
4answers
19 views
Open Source Secure Sockets Framework
I am looking for an open source framework to build a proprietary protocol onto (Agent/Client talks to a Receiver/Server that stuffs things into a SQL database).
I need session hand …
0
votes
2answers
45 views
ARP protocol : is ARP source hardware address redundant? (already contained in ethernet header)
Hi,
I'm working on a network security project and I noticed something that I can't explain:
Why do we need a source hardware address field in arp? Isn't it already contained in …
1
vote
4answers
269 views
How does DHT in torrents work?
I'm coding a p2p implementation that I would like to make decentralized however I'm having some trouble grasping how DHT in protocols like bittorrent work. How does the client know …
4
votes
6answers
162 views
How to handle different protocol versions transparently in c++?
This is a generic C++ design question.
I'm writing an application that uses a client/server model. Right now I'm writing the server-side. Many clients already exist (some written …
0
votes
1answer
20 views
Detect H.323 by simple sniffing?
Is it possible to detect if a H.323 connection (phone call) is up by simple sniffing traffic on an adjacent node?
1
vote
1answer
59 views
How to create new folder on POP3 protocol
I want to create a folder with the name "Spam" by using Javamail Api, but I'm not allowed to create any folder on POP3 protocol. What should I do?
