aboutsummaryrefslogtreecommitdiff
path: root/src/org/gnunet/statistics/WatchResponseMessage.java
blob: 2690d79f29224c750fcce697dbcf92e4a44d0ea3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.gnunet.statistics;


import org.gnunet.construct.UInt32;
import org.gnunet.construct.UInt64;
import org.gnunet.construct.UnionCase;
import org.gnunet.util.GnunetMessage;

@UnionCase(173)
public class WatchResponseMessage implements GnunetMessage.Body {
    @UInt32
    public int flags;
    @UInt32
    public int wid;
    @UInt32
    public int reserved ;
    @UInt64
    public long value;
}