Or wait for someone helpful to reply ;) <br><br><div class="gmail_quote">On Mon, Mar 28, 2011 at 5:32 PM, Nuno Silva <span dir="ltr"><<a href="mailto:little.coding.fox@gmail.com">little.coding.fox@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">First of all, be sure that the content you're getting is indeed a string. Binary data does not go well with strings, because e.g., std::string may find a '\0' before it reaches the end of the packet data which signifies an end of string in C-Style strings, and thus not have all the data.<br>

<br>You could typecast that packet->data as (const char *)packet->data, however it probably does not have an ending '\0', so you should first copy it to a buffer and append a '\0' to that buffer. Something like this:<br>

<br>std::vector<char> myString(packet->dataLength + 1);<br>myString[packet->dataLength] = '\0';<br>memcpy(&myString[0], packet->data, packet->dataLength);<br><br>std::string my_string(&myString[0]);<br>

<br>Hope that helps.<br><br><div class="gmail_quote"><div class="im">On Mon, Mar 28, 2011 at 4:26 PM, ingmar wirths <span dir="ltr"><<a href="mailto:ingmania@googlemail.com" target="_blank">ingmania@googlemail.com</a>></span> wrote:<br>
</div><div><div></div><div class="h5"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi,<br>
<br>
i'm getting a little frustrated trying to put the content of a packet<br>
into a string.<br>
What i simply want to do is something like:<br>
<br>
std::string my_string (packet->data, packet->dataLength);<br>
<br>
This doesn't compile however. I kind of get the idea why not, fiddled<br>
around a little,<br>
but could'nt get it working.<br>
<br>
I guess someone did this before, any ideas?<br>
<br>
Thanks,<br>
ingmar<br>
_______________________________________________<br>
ENet-discuss mailing list<br>
<a href="mailto:ENet-discuss@cubik.org" target="_blank">ENet-discuss@cubik.org</a><br>
<a href="http://lists.cubik.org/mailman/listinfo/enet-discuss" target="_blank">http://lists.cubik.org/mailman/listinfo/enet-discuss</a><br>
</blockquote></div></div></div><br>
<br>_______________________________________________<br>
ENet-discuss mailing list<br>
<a href="mailto:ENet-discuss@cubik.org">ENet-discuss@cubik.org</a><br>
<a href="http://lists.cubik.org/mailman/listinfo/enet-discuss" target="_blank">http://lists.cubik.org/mailman/listinfo/enet-discuss</a><br>
<br></blockquote></div><br>