aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/gnunet/mesh/TunnelDestroyMessage.java
blob: bce60bb774714823aedc69552f898ada975bdd74 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.gnunet.mesh;

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

/**
 * ...
 *
 * @author Florian Dold
 */
@UnionCase(274)
public class TunnelDestroyMessage implements GnunetMessage.Body {
    @UInt32
    public int tunnel_id;
}