Changes between Initial Version and Version 3 of Ticket #244
- Timestamp:
- Apr 30, 2007 4:53:26 PM (18 years ago)
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 1 The Symbian DNS problem can be resolved by not using 2 3 {{{ 4 const TNameRecord &rec = (const TNameRecord&) nameEntry; 5 }}} 6 7 in pj_gethostbyname(). Instead you can get the information 8 directly from nameEntry with the following syntax: 9 10 {{{ 11 TInetAddr inetAddr(nameEntry().iAddr); 12 }}}