Hello,
What does "Descriptor parameter error" mean?
I got this randomly in my Socket-application but it's not reproduceable.
I'm basicly following SDK's Socket-example procedure to connect and get data.
Thanks.
Printable View
Hello,
What does "Descriptor parameter error" mean?
I got this randomly in my Socket-application but it's not reproduceable.
I'm basicly following SDK's Socket-example procedure to connect and get data.
Thanks.
I have the same problem.
[url]http://www.symbian.com/developer/techlib/papers/errores/erresapi.html[/url]
on this page you can find error codes.
regards
milosz
Humm ...
the list is great but there is no reason !! example code -36 means disconnected but why the connection could be disconnected ......
Dominique HUGO.
Propably you're passing function local variable to asyncronous function call. Asynchronous call is randomly processed completely after end of function (depends on timing) and in that case asynchronous function call uses already trashed local variable and it causes crashes.
This is just a hunch...