Back to project page you2peer.
The source code is released under:
Apache License
If you think the Android project you2peer listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.u2p.messages; /*from w w w . j a v a2 s. c o m*/ import java.io.Serializable; public class ACK implements Serializable{ private int type; /** * -1 Fin Comunicacin * * * * * */ private static final long serialVersionUID = 1L; public ACK(int type){ this.type=type; } public int getACKType(){ return type; } }