- Timestamp:
- 10/28/07 23:38:23 (1 year ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
Mulberry/branches/v4.1d1/Sources_Common/HTTP/HTTPClient/CHTTPRequestResponse.cpp
r86 r112 330 330 } 331 331 332 cdstrvect& CHTTPRequestResponse::GetResponseHeaders(const cdstring& hdr, cdstrvect& hdrs) const 333 { 334 if (mHeaders.count(hdr)) 335 { 336 for(cdstrmultimapcasei::const_iterator iter = mHeaders.lower_bound(hdr); iter != mHeaders.upper_bound(hdr); iter++) 337 hdrs.push_back((*iter).second); 338 } 339 340 return hdrs; 341 } 342 332 343 bool CHTTPRequestResponse::IsRedirect() const 333 344 {