- Timestamp:
- Nov 19, 2006 2:59:13 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/symbian/pjlib/src/pj/addr_resolv_symbian.cpp
- Property svn:eol-style set to native
- Property svn:keywords set to id
r791 r806 40 40 // Resolve! 41 41 TNameEntry nameEntry; 42 TInt rc = resv.GetByName(data, nameEntry); 43 44 if (rc != KErrNone) 45 return PJ_RETURN_OS_ERROR(rc); 42 TRequestStatus reqStatus; 43 44 resv.GetByName(data, nameEntry, reqStatus); 45 User::WaitForRequest(reqStatus); 46 47 if (reqStatus != KErrNone) 48 return PJ_RETURN_OS_ERROR(reqStatus.Int()); 46 49 47 50 // Get the resolved TInetAddr
Note: See TracChangeset
for help on using the changeset viewer.