/////////////////////////////////////////////////////////////////////////////
-// Name: http.cpp
+// Name: src/common/http.cpp
// Purpose: HTTP protocol
// Author: Guilhem Lavaux
// Modified by: Simo Virokannas (authentication, Dec 2005)
#include "wx/wxprec.h"
#ifdef __BORLANDC__
- #pragma hdrstop
+ #pragma hdrstop
#endif
#if wxUSE_PROTOCOL_HTTP
#include <stdlib.h>
#ifndef WX_PRECOMP
-#include "wx/string.h"
-#include "wx/app.h"
+ #include "wx/string.h"
+ #include "wx/app.h"
#endif
#include "wx/tokenzr.h"
toencode.Printf(wxT("%s:%s"),user.c_str(),pass.c_str());
- size_t len = toencode.Length();
+ size_t len = toencode.length();
const wxChar *from = toencode.c_str();
while (len >= 3) { // encode full blocks first
buf << wxString::Format(wxT("%c%c"), base64[(from[0] >> 2) & 0x3f], base64[((from[0] << 4) & 0x30) | ((from[1] >> 4) & 0xf)]);
if (m_perr != wxPROTO_NOERR)
return false;
- if (line.Length() == 0)
+ if (line.length() == 0)
break;
wxString left_str = line.BeforeFirst(':');
SetHeader(wxT("User-Agent"), wxT("wxWidgets 2.x"));
// Send authentication information
- if (m_username.Length()>0 || m_password.Length()>0) {
+ if (!m_username.empty() || !m_password.empty()) {
SetHeader(wxT("Authorization"), GenerateAuthString(m_username, m_password));
}
}
#endif // wxUSE_PROTOCOL_HTTP
-