Simon Leinen
Simon Leinen
> Doesn't "msg":"panic: runtime error: index out of range" look suspicious? Indeed. If you unpack the subsequent messages, the exception seems to happen around line 890 in server/occurrence.go, in the...
Nice description of the problem, and I agree with your conclusions. For most real applications you should be able to reduce b) to c) at the cost of additional ports....
@lukego You realize that Torch7 was originally (co-)developed just a few hills away from you at IDIAP in Martigny? I would have suggested that you go visit those folks to...
Thanks for pointing me to this page, interesting... unfortunately I cannot recall anyone ever contacting me about this samplicator variant. That's a pity! Maybe someone else who still has access...
The main limitation of the package is that it uses regular UDP datagram sockets and basic system calls (`recvfrom` and `sendto`). This means at least N+1 (where _N_ is the...
_From [[email protected]](https://code.google.com/u/107530144481437668885/) on August 11, 2010 12:36:30_ That's a useful change, thanks for submitting it. Before merging this, I would like better handling of the case where the user specifies...
_From [[email protected]](https://code.google.com/u/107530144481437668885/) on August 12, 2010 15:05:09_ As the patch is currently written, I doubt that the source-port selection works when source address spoofing is used. If both a source...
_From [[email protected]](https://code.google.com/u/114018047254227776285/) on August 13, 2010 01:46:16_ Thanks for comments. I tried to do as least changes as possible. I wasn't sure if using more then one socket is good...
The code goes through the configured source prefixes (`ctx->sources`), and when it finds a match, it sends to the corresponding destination and considers its work done for this packet. So...
Thanks for your patch. I'll try to review it soon. On which systems did you test this?