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

Side by Side Diff: ipc/ipc_channel_posix.h

Issue 12386010: Implement IPC::ChannelFactory, a class that accept()s on a UNIX socket. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add comments for unix_domain_socket_util Created 7 years, 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef IPC_IPC_CHANNEL_POSIX_H_ 5 #ifndef IPC_IPC_CHANNEL_POSIX_H_
6 #define IPC_IPC_CHANNEL_POSIX_H_ 6 #define IPC_IPC_CHANNEL_POSIX_H_
7 7
8 #include "ipc/ipc_channel.h" 8 #include "ipc/ipc_channel.h"
9 9
10 #include <sys/socket.h> // for CMSG macros 10 #include <sys/socket.h> // for CMSG macros
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 bool must_unlink_; 187 bool must_unlink_;
188 188
189 #if defined(OS_LINUX) 189 #if defined(OS_LINUX)
190 // If non-zero, overrides the process ID sent in the hello message. 190 // If non-zero, overrides the process ID sent in the hello message.
191 static int global_pid_; 191 static int global_pid_;
192 #endif // OS_LINUX 192 #endif // OS_LINUX
193 193
194 DISALLOW_IMPLICIT_CONSTRUCTORS(ChannelImpl); 194 DISALLOW_IMPLICIT_CONSTRUCTORS(ChannelImpl);
195 }; 195 };
196 196
197 // The maximum length of the name of a pipe for MODE_NAMED_SERVER or
198 // MODE_NAMED_CLIENT if you want to pass in your own socket.
199 // The standard size on linux is 108, mac is 104. To maintain consistency
200 // across platforms we standardize on the smaller value.
201 static const size_t kMaxPipeNameLength = 104;
202
203 } // namespace IPC 197 } // namespace IPC
204 198
205 #endif // IPC_IPC_CHANNEL_POSIX_H_ 199 #endif // IPC_IPC_CHANNEL_POSIX_H_
OLDNEW
« ipc/ipc.gypi ('K') | « ipc/ipc_channel_factory.cc ('k') | ipc/ipc_channel_posix.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698