repo.or.cz
/
Samba.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
s3-server_id Add task_id to server_id to match Samba4
[Samba.git]
/
source3
/
librpc
/
idl
/
server_id.idl
blob
095405af56d6ba042fe80d5b56a21f21e84f45af
1
[
2
pointer_default
(
unique
)
3
]
4
interface
server_id
5
{
6
7
/* used to look like the following, note that unique_id was not
8
* marshalled at all...
9
10
struct server_id {
11
pid_t pid;
12
#ifdef CLUSTER_SUPPORT
13
uint32 vnn;
14
#endif
15
uint64_t unique_id;
16
};
17
18
*/
19
20
typedef
[
public
]
struct
{
21
uint32 pid
;
22
uint32 task_id
;
23
uint32 vnn
;
24
udlong unique_id
;
25
}
server_id
;
26
}