Hello,

I'm the same guy who asked all those NDISUIO questions. I seem to have
gotten some of it working. When I try to send regular traffic through a
configured WLAN interface, I get Winsock error 11010. The last Winsock
error code is 11004. The descriptions continue on the page as "OS
dependent" error codes (I guess CE is an OS dependency). Counting up
from 11004, the one that corresponds to 11010 is "Overlapped operation
aborted", which rings a bell given that CE doesn't support overlapped
operations, but I was not attempting an overlapped operation.

Thanks for your help, CE gurus...

Tim

Re: What is Winsock error code 11010? by Tom

Tom
Thu Oct 27 13:53:11 CDT 2005

11010 - WSA_QOS_ADMISSION_FAILURE - Error due to lack of resources (??)

Tom Gensel (eMVP)



Re: What is Winsock error code 11010? by anonymous

anonymous
Thu Oct 27 19:09:07 CDT 2005

Try searching the public oak, sdk, and ddk \inc directory for '10000+' and
'11000+'. There are a series of errors like this returned from iphelper
library in one of the headers, which are the errors from the default ping
utiity and its always difficult to figure out they are really from that list.

"Tom Gensel (eMVP)" wrote:

> 11010 - WSA_QOS_ADMISSION_FAILURE - Error due to lack of resources (??)
>
> Tom Gensel (eMVP)
>
>
>

Re: What is Winsock error code 11010? by coreyb

coreyb
Thu Nov 17 15:14:46 CST 2005

I believe this error is IP_REQ_TIMED_OUT:

From ipexport.h in public\common\oak\inc:
//
// IP_STATUS codes returned from IP APIs
//

#define IP_STATUS_BASE 11000

#define IP_SUCCESS 0
#define IP_BUF_TOO_SMALL (IP_STATUS_BASE + 1)
#define IP_DEST_NET_UNREACHABLE (IP_STATUS_BASE + 2)
#define IP_DEST_HOST_UNREACHABLE (IP_STATUS_BASE + 3)
#define IP_DEST_PROT_UNREACHABLE (IP_STATUS_BASE + 4)
#define IP_DEST_PORT_UNREACHABLE (IP_STATUS_BASE + 5)
#define IP_NO_RESOURCES (IP_STATUS_BASE + 6)
#define IP_BAD_OPTION (IP_STATUS_BASE + 7)
#define IP_HW_ERROR (IP_STATUS_BASE + 8)
#define IP_PACKET_TOO_BIG (IP_STATUS_BASE + 9)
#define IP_REQ_TIMED_OUT (IP_STATUS_BASE + 10)
#define IP_BAD_REQ (IP_STATUS_BASE + 11)
#define IP_BAD_ROUTE (IP_STATUS_BASE + 12)
#define IP_TTL_EXPIRED_TRANSIT (IP_STATUS_BASE + 13)
#define IP_TTL_EXPIRED_REASSEM (IP_STATUS_BASE + 14)
#define IP_PARAM_PROBLEM (IP_STATUS_BASE + 15)
#define IP_SOURCE_QUENCH (IP_STATUS_BASE + 16)
#define IP_OPTION_TOO_BIG (IP_STATUS_BASE + 17)
#define IP_BAD_DESTINATION (IP_STATUS_BASE + 18)


Hope that helps! I know errors can be tough to track down sometimes.
-Corey