Tagged Questions

6
votes
2answers
1k views

Tools for experimental Protocol Design & Development?

Are there any open source, high level tools that would facilitate and simplify development of experimental network protocols (TCP/UDP) using a GUI? Basically, something like a dynamic state machine ...
2
votes
2answers
232 views

Haskell Binary Parsing

I've been trying to implement a protocol parser in haskell and I'm pretty new to the language, especially when it comes to monads. I've been using binary-0.5.0.2 and have described the header and all ...
0
votes
0answers
93 views

Requesting custom protocol in Kohana 3.2

I'm attempting to request a custom protocol from a Kohana script. I have the following code: $uri = 'spotify:user:sonycmguk:playlist:1x4ozPlECFO8wTPyPCbJ4U'; $request = Request::factory($uri); ...
0
votes
2answers
85 views

Connecting a desktop application with a website

I made an application using Qt/C++ that reads some values every 5-7 seconds and sends them to a website. My approach is very simple. I am just reading the values i want to send and then i make an ...
0
votes
2answers
59 views

How many times should I retransmit a packet before assuming that it was lost?

I've been creating a reliable networking protocol similar to TCP, and was wondering what a good default value for a re-transmit threshold should be on a packet (the number of times I resend the packet ...
0
votes
2answers
181 views

URL schemes (Protocol handler) programming for Windows?

This page explains how to make a Mac application to handle custom URL schemes. How can I do the same thing with PC?
0
votes
1answer
107 views

Custom URL Protocol avoiding security warnings

I'm researching whether it would be possible to use Custom URL Application Protocols (such as custom://) to launch my application but it looks like all implementations modify the HKCR. This causes ...
0
votes
4answers
239 views

Communicating from website to desktop application (not vice-versa)

I am designing an application such that it will have to react to certain actions required by the website, mostly the same way Last.FM client does (if you have used one) The way Last.FM client works ...