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

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

/**
 * Response to a greeting request from a client, sent by the server if name is not banned.
 *
 * @author Florian Dold
 */
@UnionCase(43002)
public class GreetingResponseMessage implements GnunetMessage.Body {
    @ZeroTerminatedString
    public String greeting;
}