Guest User

Untitled

a guest
Jan 20th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. sock.BeginSend (buf, 0, buf.Length, SocketFlags.None, res => {
  2. try {
  3. sock.EndSend (res);
  4. } catch (Exception e) {
  5. log.Error ("Error writing to worker for {0}:{1}: {2}", ep.Address, ep.Port, e.Message);
  6. Bad = true;
  7. }
  8. }, null);
Add Comment
Please, Sign In to add comment