aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/gnunet/mesh/InboundChannelHandler.java
blob: 666f4ae0b1ceef7f81d5ca80f9544e98723ba2be (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package org.gnunet.mesh;

import org.gnunet.util.PeerIdentity;

/**
 * ...
 *
 * @author Florian Dold
 */
public interface InboundChannelHandler {
    void onInboundChannel(Mesh.Channel channel, PeerIdentity initiator);
}