aboutsummaryrefslogtreecommitdiff
path: root/src/org/gnunet/mesh/TunnelNotificationMessage.java
blob: 8846088350c2bf4118eec8b445a3835815468749 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package org.gnunet.mesh;

import org.gnunet.construct.NestedMessage;
import org.gnunet.construct.UInt32;
import org.gnunet.util.GnunetMessage;
import org.gnunet.util.PeerIdentity;

/**
 * ...
 *
 * @author Florian Dold
 */
public class TunnelNotificationMessage implements GnunetMessage.Body {
    @UInt32
    public int tunnel_id;
    /**
     * Peer at the other end, if any
     * TODO: ask bart what 'if any' means here
     */
    @NestedMessage
    public PeerIdentity peer;
}