V2 llmessage merge, incl. llcommon requisites.
Excluded llareslistener, as that appears to only be present for unit-testing Excluded new SSL methods because, well, they don't work right reliably in v2 for me
This commit is contained in:
@@ -118,6 +118,7 @@ chan_(NULL), mInitSuccess(false)
|
||||
LLAres::~LLAres()
|
||||
{
|
||||
ares_destroy(chan_);
|
||||
ares_library_cleanup();
|
||||
}
|
||||
|
||||
void LLAres::cancel()
|
||||
@@ -173,7 +174,8 @@ void LLAres::rewriteURI(const std::string &uri, UriRewriteResponder *resp)
|
||||
|
||||
LLQueryResponder::LLQueryResponder()
|
||||
: LLAres::QueryResponder(),
|
||||
mResult(ARES_ENODATA)
|
||||
mResult(ARES_ENODATA),
|
||||
mType(RES_INVALID)
|
||||
{
|
||||
}
|
||||
|
||||
@@ -639,8 +641,10 @@ LLPtrRecord::LLPtrRecord(const std::string &name, unsigned ttl)
|
||||
}
|
||||
|
||||
LLAddrRecord::LLAddrRecord(LLResType type, const std::string &name,
|
||||
unsigned ttl)
|
||||
: LLDnsRecord(type, name, ttl)
|
||||
unsigned ttl)
|
||||
: LLDnsRecord(type, name, ttl),
|
||||
|
||||
mSize(0)
|
||||
{
|
||||
}
|
||||
|
||||
@@ -699,7 +703,11 @@ bail:
|
||||
}
|
||||
|
||||
LLSrvRecord::LLSrvRecord(const std::string &name, unsigned ttl)
|
||||
: LLHostRecord(RES_SRV, name, ttl)
|
||||
: LLHostRecord(RES_SRV, name, ttl),
|
||||
|
||||
mPriority(0),
|
||||
mWeight(0),
|
||||
mPort(0)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user