equal
deleted
inserted
replaced
|
1 |
|
2 // Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 // All rights reserved. |
|
4 // This component and the accompanying materials are made available |
|
5 // under the terms of "Eclipse Public License v1.0" |
|
6 // which accompanies this distribution, and is available |
|
7 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 // |
|
9 // Initial Contributors: |
|
10 // Nokia Corporation - initial contribution. |
|
11 // |
|
12 // Contributors: |
|
13 // |
|
14 // Description: |
|
15 // IPv6/IPv4 socket library public header |
|
16 // |
|
17 // |
|
18 /** @file in_sock_internal.h |
|
19 * IPv6/IPv4 socket library internal header |
|
20 * |
|
21 */ |
|
22 |
|
23 #ifndef __IN_SOCK_INTERNAL_H__ |
|
24 #define __IN_SOCK_INTERNAL_H__ |
|
25 |
|
26 #include <e32std.h> |
|
27 |
|
28 |
|
29 /** Load scope vector from iZone (Set) @internalAll */ |
|
30 const TUint KSoInetIfQuerySetScope = 0x10; |
|
31 /** Set interface to Host mode @internalAll */ |
|
32 const TUint KSoInetIfQuerySetHost = 0x11; |
|
33 /** Set interface to Router mode @internalAll */ |
|
34 const TUint KSoInetIfQuerySetRouter = 0x12; |
|
35 |
|
36 |
|
37 |
|
38 /** |
|
39 Set the UDP receive buffer size for a socket in bytes. Overrides global ini parameter |
|
40 <tt>udp_recv_buf</tt>. At least one datagram always fits to the buffer, no matter how |
|
41 small it is. |
|
42 |
|
43 Default receive buffer size is 8192 bytes, or the value given in <tt>udp_recv_buf</tt>. |
|
44 |
|
45 @internalAll |
|
46 @released |
|
47 */ |
|
48 const TUint KSoUdpRecvBuf = 0x501; |
|
49 |
|
50 #endif |