blob: 9b59106040ed2b503de87eac377ac3dd090771da [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SRC_DEVELOPER_DEBUG_SHARED_SOCKET_WATCHER_H_
#define SRC_DEVELOPER_DEBUG_SHARED_SOCKET_WATCHER_H_
#if !defined(__Fuchsia__)
#error socket_watcher.h can only be included on Fuchsia.
#endif
#include <zircon/types.h>
namespace debug_ipc {
class SocketWatcher {
public:
virtual void OnSocketReadable(zx_handle_t socket_handle) {}
virtual void OnSocketWritable(zx_handle_t socket_handle) {}
virtual void OnSocketError(zx_handle_t socket_handle) {}
};
} // namespace debug_ipc
#endif // SRC_DEVELOPER_DEBUG_SHARED_SOCKET_WATCHER_H_