Sektor van Skijlen

Results 362 comments of Sektor van Skijlen

Ok, I think I can guess where the problem can be. What's your default value of the IPV6_V6ONLY option on a newly created UDP socket? I made another mistake when...

@maxsharabayko I think the procedure for binding check is wrong. ``` if (m.m_mcfg.iIpV6Only != -1 && m.m_mcfg.iIpV6Only != cfgSocket.iIpV6Only) ``` The problem is that this finds a nonexistent conflict between...

I think this version looks better: ```c++ string uri_decode(const string& in, bool printonly) { char buf[4]; std::ostringstream out; for (size_t i = 0; i < in.size(); ++i) { char c...

> However, doing the sscanf without the checks that the characters are hex digits is more misleading when the input is bad. For example "%2z" will be improperly interpreted by...

What I can see weird in this call stack above is that both CUDT and CUDTSocket objects' addresses seem to be from the same domain, and the same as CUDTUnited...

You need to realize what exactly packets are being sent between parties during the normal stream transmission: * Sender to Receiver: DATA packets, ACKACK packets * Receiver to Sender: ACK...

SRT cannot be used on unidirectional links at all. Not only because it needs the ACKs back, but also that without them you can't measure anything.

That's not an RTT, if the measurement is by having a packet travel forwards on link 1 and return on link 2. That's not impossible, but useless. And RTT is...

Could you please check with the fix in #2032? I tested it in the environment with other fixes related to "thread insanity" problems, but I made the fix as little...

Further study states that: 1. The implementation of the ACK window - refactored only formally (just in order to avoid dynamic allocation and too fine-grained delocalization) - is messy, although...