FACT++  1.0
void ConnectionPFmini::HandleReadTimeout ( const bs::error_code &  error)
inlineprivate

Definition at line 117 of file pfminictrl.cc.

References Error(), and str.

118  {
119  // 125: Operation canceled (bs::error_code(125, bs::system_category))
120  if (error && error!=ba::error::basic_errors::operation_aborted)
121  {
122  ostringstream str;
123  str << "Read timeout of " << URL() << " timed out: " << error.message() << " (" << error << ")";// << endl;
124  Error(str);
125 
126  PostClose(false);
127  return;
128  }
129 
130  if (!fReceived)
131  PostClose(false);
132  }
char str[80]
Definition: test_client.c:7
Error()
Definition: HeadersFTM.h:197

+ Here is the call graph for this function: