Steve Achelis wrote:

> I've developed a Palm app using CW.  I successfully call INetLibOpen() and
> INetLibURLOpen(), but when I call INetLibSockRead() it immediately fails
> with 4630.
>
> This was working for me, but now it generates this message (I'm not sure
> what changed, my ISP, the version of emulator, etc.).
>
> This happens in the emulator.  The code is designed to read a file from the
> web (not web clipping).
>
> Any ideas?  Does anyone know how I can find out what err 4620 means?  It
> isn't one of the inetErr... defines from INetMgr.h.

Convert to hex => 0x120C

Immediately recognize (based on hours of staring at this stuff) that 0x120C is really 
a netlib error
OR
Open ErrorBase.h and see
#define netErrorClass    0x1200 // Net Library

convert 0x0C to decimal => 12

Open NetMgr.h and see
#define netErrNoInterfaces    (netErrorClass | 12)  //ENETUNREACH

Scratch yer head for a while...

--
Adam Wozniak                     Senior Software Design Engineer
                                 Surveyor Corporation
[EMAIL PROTECTED]                4548 Broad Street
[EMAIL PROTECTED]          San Luis Obispo, CA 93401



-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palm.com/devzone/mailinglists.html

Reply via email to