X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=senf%2FSocket%2FProtocols%2FRaw%2FParseString.ct;h=0ca7b4fea6c8c5a8a3ad97548f342e1d540cffa1;hb=cb50871835b7a5c37e4fd32d38de67fa12570ebc;hp=94eeeac7cfaf5cc02d3425aa80ccdaf4f8ae1d24;hpb=601d1f509f5bb24df167a4dd5a20da67a0af9af8;p=senf.git diff --git a/senf/Socket/Protocols/Raw/ParseString.ct b/senf/Socket/Protocols/Raw/ParseString.ct index 94eeeac..0ca7b4f 100644 --- a/senf/Socket/Protocols/Raw/ParseString.ct +++ b/senf/Socket/Protocols/Raw/ParseString.ct @@ -1,6 +1,6 @@ // $Id$ // -// Copyright (C) 2009 +// Copyright (C) 2009 // Fraunhofer Institute for Open Communication Systems (FOKUS) // Competence Center NETwork research (NET), St. Augustin, GERMANY // Stefan Bund @@ -29,7 +29,8 @@ #include #include #include -#include "../../../Utils/String.hh" +#include +#include #define prefix_ ///////////////////////////////ct.p//////////////////////////////////////// @@ -52,10 +53,10 @@ prefix_ void senf::detail::parseHexString(std::string const & value, std::string(boost::begin(*i),boost::end(*i)))); } catch (std::bad_cast &) { - throw AddressSyntaxException(); + throw AddressSyntaxException(value); } if (i!=i_end || f!=l) - throw AddressSyntaxException(); + throw AddressSyntaxException(value); } ///////////////////////////////ct.e////////////////////////////////////////