OLD | NEW |
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 Loading... |
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_ |
OLD | NEW |