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

Side by Side Diff: mojo/services/public/interfaces/network/tcp_server_socket.mojom

Issue 613683006: Add TCP socket mojo interfaces (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Implement network service functions Created 6 years, 2 months 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 import "mojo/services/public/interfaces/network/net_address.mojom"
6 import "mojo/services/public/interfaces/network/network_error.mojom"
7 import "mojo/services/public/interfaces/network/tcp_client_socket.mojom"
8
9 module mojo {
10
11 // Represents a TCP server socket listening for incoming requests.
12 [Client=TCPServerSocketClient]
13 interface TCPServerSocket {
14 // Accepts an incoming connection request and hooks up a TCPClientSocket for
15 // connecting with the remote host. This function is called in reponse to
16 // OnConnectionAvailable().
17 //
18 // On success, the address of the remote host will be provided.
19 AcceptConnection(handle<data_pipe_consumer> send_stream,
20 handle<data_pipe_producer> receive_stream,
21 TCPClientSocket& client_socket)
wtc 2014/10/03 22:37:43 Nit: it is confusing that TCPServerSocket::AcceptC
22 => (NetworkError result, NetAddress? remote_address);
23 };
24
25 interface TCPServerSocketClient {
26 // Notifies the client that an incoming connection is available.
27 //
28 // The client should call AcceptConnection() to accept the request.
29 OnConnectionAvailable();
30
31 // TODO(brettw) probably need some error reporting function here.
32 };
33
34 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698