Browse Source

Merge pull request #290 from dryabov/patch-2

More checks to be sure DM is in new format
miguelfreitas
miguelfreitas 10 years ago
parent
commit
82f305403c
  1. 8
      src/twister.cpp

8
src/twister.cpp

@ -1092,11 +1092,15 @@ bool processReceivedDM(lazy_entry const* post)
libtorrent::error_code ec; libtorrent::error_code ec;
if (lazy_bdecode(textOut.data(), textOut.data()+textOut.size(), v, ec, &pos) == 0 if (lazy_bdecode(textOut.data(), textOut.data()+textOut.size(), v, ec, &pos) == 0
&& v.type() == lazy_entry::dict_t) { && v.type() == lazy_entry::dict_t) {
msg = v.dict_find_string_value("msg"); lazy_entry const* pMsg = v.dict_find_string("msg");
to = v.dict_find_string_value("to"); lazy_entry const* pTo = v.dict_find_string("to");
if (pMsg && pTo) {
msg = pMsg->string_value();
to = pTo->string_value();
// new features here: key distribution etc // new features here: key distribution etc
} }
} }
}
if( !msg.length() || !to.length() ) if( !msg.length() || !to.length() )
break; break;

Loading…
Cancel
Save