Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(695)

Unified Diff: net/udp/fuzzed_datagram_client_socket.h

Issue 2508593002: net: move udp directory into socket (Closed)
Patch Set: revert sys/socket.h change Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/udp/diff_serv_code_point.h ('k') | net/udp/fuzzed_datagram_client_socket.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/udp/fuzzed_datagram_client_socket.h
diff --git a/net/udp/fuzzed_datagram_client_socket.h b/net/udp/fuzzed_datagram_client_socket.h
deleted file mode 100644
index 18886d9f2da5a75835fc09b95a01fd9ba752d26e..0000000000000000000000000000000000000000
--- a/net/udp/fuzzed_datagram_client_socket.h
+++ /dev/null
@@ -1,81 +0,0 @@
-// Copyright 2016 The Chromium 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 NET_UDP_FUZZED_DATAGRAM_CLIENT_SOCKET_H_
-#define NET_UDP_FUZZED_DATAGRAM_CLIENT_SOCKET_H_
-
-#include "net/udp/datagram_client_socket.h"
-
-#include <stdint.h>
-
-#include "base/memory/weak_ptr.h"
-#include "net/base/completion_callback.h"
-#include "net/base/ip_endpoint.h"
-#include "net/base/network_change_notifier.h"
-#include "net/log/net_log_with_source.h"
-
-namespace base {
-class FuzzedDataProvider;
-}
-
-namespace net {
-
-class IOBuffer;
-
-// Datagram ClientSocket implementation for use with fuzzers. Can fail to
-// connect, reads and writes can succeed or fail synchronously or
-// asynchronously. Successful reads return random data.
-class FuzzedDatagramClientSocket : public DatagramClientSocket {
- public:
- // |data_provider| must outlive the created socket.
- explicit FuzzedDatagramClientSocket(base::FuzzedDataProvider* data_provider);
- ~FuzzedDatagramClientSocket() override;
-
- // DatagramClientSocket implementation:
- int Connect(const IPEndPoint& address) override;
- int ConnectUsingNetwork(NetworkChangeNotifier::NetworkHandle network,
- const IPEndPoint& address) override;
- int ConnectUsingDefaultNetwork(const IPEndPoint& address) override;
- NetworkChangeNotifier::NetworkHandle GetBoundNetwork() const override;
-
- // DatagramSocket implementation:
- void Close() override;
- int GetPeerAddress(IPEndPoint* address) const override;
- int GetLocalAddress(IPEndPoint* address) const override;
- void UseNonBlockingIO() override;
- const NetLogWithSource& NetLog() const override;
-
- // Socket implementation:
- int Read(IOBuffer* buf,
- int buf_len,
- const CompletionCallback& callback) override;
- int Write(IOBuffer* buf,
- int buf_len,
- const CompletionCallback& callback) override;
- int SetReceiveBufferSize(int32_t size) override;
- int SetSendBufferSize(int32_t size) override;
- int SetDoNotFragment() override;
-
- private:
- void OnReadComplete(const net::CompletionCallback& callback, int result);
- void OnWriteComplete(const net::CompletionCallback& callback, int result);
-
- base::FuzzedDataProvider* data_provider_;
-
- bool connected_ = false;
- bool read_pending_ = false;
- bool write_pending_ = false;
-
- NetLogWithSource net_log_;
-
- IPEndPoint remote_address_;
-
- base::WeakPtrFactory<FuzzedDatagramClientSocket> weak_factory_;
-
- DISALLOW_COPY_AND_ASSIGN(FuzzedDatagramClientSocket);
-};
-
-} // namespace net
-
-#endif // NET_UDP_FUZZED_DATAGRAM_CLIENT_SOCKET_H_
« no previous file with comments | « net/udp/diff_serv_code_point.h ('k') | net/udp/fuzzed_datagram_client_socket.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698