Changes between Initial Version and Version 3 of Ticket #244


Ignore:
Timestamp:
Apr 30, 2007 4:53:26 PM (17 years ago)
Author:
bennylp
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #244

    • Property Type changed from task to defect
    • Property Milestone changed from release-0.6.0 to Symbian-trunk-integration
  • Ticket #244 – Description

    initial v3  
     1The Symbian DNS problem can be resolved by not using 
     2 
     3{{{ 
     4  const TNameRecord &rec = (const TNameRecord&) nameEntry; 
     5}}} 
     6 
     7in pj_gethostbyname(). Instead you can get the information 
     8directly from nameEntry with the following syntax: 
     9 
     10{{{ 
     11  TInetAddr inetAddr(nameEntry().iAddr); 
     12}}}