
The methodology used to generate this CL is documented in https://crbug.com/1098010#c95. No-Try: true No-Presubmit: true Bug: 1098010 Change-Id: Ia865422057bdda8d25f347a651636f6f7f4d4278 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3900694 Owners-Override: Avi Drissman <avi@chromium.org> Commit-Queue: Avi Drissman <avi@chromium.org> Reviewed-by: Mark Mentovai <mark@chromium.org> Auto-Submit: Avi Drissman <avi@chromium.org> Cr-Commit-Position: refs/heads/main@{#1047637}
24 lines
720 B
C++
24 lines
720 B
C++
// Copyright 2014 The Chromium Authors
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef REMOTING_PROTOCOL_SOCKET_UTIL_H_
|
|
#define REMOTING_PROTOCOL_SOCKET_UTIL_H_
|
|
|
|
namespace remoting {
|
|
|
|
// Enum for different actions that can be taken after sendto() returns an error.
|
|
enum SocketErrorAction {
|
|
SOCKET_ERROR_ACTION_FAIL,
|
|
SOCKET_ERROR_ACTION_IGNORE,
|
|
SOCKET_ERROR_ACTION_RETRY,
|
|
};
|
|
|
|
// Returns true if |error| must be ignored when returned from sendto(). |retry|
|
|
// is set set when sentto() should be called for the same packet again.
|
|
SocketErrorAction GetSocketErrorAction(int error);
|
|
|
|
} // namespace remoting
|
|
|
|
#endif // REMOTING_PROTOCOL_SOCKET_UTIL_H_
|