blob: f7f176a6c1a38cc0eb96f22ab99bc62d043fbb41 [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 {
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
#endif // SRC_DEVELOPER_DEBUG_SHARED_SOCKET_WATCHER_H_