Hi, I'm trying to call bind on a udp::socket separately from the udp::socket constructor. As in when i use the overloaded udp::socket constructor and pass in a local endpoint for it to do the bind on it work's fine. However when i only pass in the boost::asio::io_service and then call bind on the socket later with a local scope udp::endpoint it throws the following exception. First-chance exception at 0x76b442eb in Chatter.exe: Microsoft C++ exception: boost::system::system_error at memory location 0x0012e774.. I've got two questions, the first is does anyone have any idea of what this is, and the second is how do i get access to the socket error codes or states. As in if i knew what the error was i'd maybe be able to fix this myself and i appriciate that it's difficult without seeing the code itself to tell me what i'm doing wrong. Thanks, Tim.
First-chance exception at 0x76b442eb in Chatter.exe: Microsoft C++ exception: boost::system::system_error at memory location 0x0012e774..
What message and the code of the system_error you've got? Probably, it will explain the reason of the error. By the way, most of the asio functions have no-throw version that gets error_code& as a paramter and fills it in case of error.
First-chance exception at 0x76b442eb in Chatter.exe: Microsoft C++ exception: boost::system::system_error at memory location 0x0012e774..
I've got two questions, the first is does anyone have any idea of what
this is
http://blogs.msdn.com/davidklinems/archive/2005/07/12/438061.aspx ****************************************************************************** "This message and any attachments are solely for the intended recipient and may contain confidential and privileged information. If you are not the intended recipient, any disclosure, copying, use, or distribution of the information included in this message and any attachments is prohibited. If you have received this communication in error, please notify us by reply e-mail and immediately and permanently delete this message and any attachments. Thank you." Interactive Transaction Solutions Ltd (2473364 England) Registered Office: Systems House, Station Approach Emsworth PO10 7PW ********************************************************************** Ce message �lectronique contient des informations confidentielles � l'usage unique des destinataires indiqu�s, personnes physiques ou morales. Si vous n'�tes pas le destinataire voulu, toute divulgation, copie, ou diffusion ou toute autre utilisation de ces informations, est interdite. Si vous avez re�u ce message �lectronique par erreur, nous vous remercions d'en avertir son exp�diteur imm�diatement par email et de d�truire ce message ainsi que les �l�ments attach�s. Interactive transaction Solutions SAS- France (RCS Pontoise : 489 397 877) Si�ge social : Parc Saint Christophe, 10, Avenue de l�Entreprise 95865 Cergy-Pontoise Cedex ______________________________________________________________________ This email has been scanned by the MessageLabs Email Security System. For more information please visit http://www.messagelabs.com/email ______________________________________________________________________
participants (3)
-
Igor R
-
Patrick Loney
-
Tim Pynegar