Many bugfixes and improvements

This commit is contained in:
Ziver Koc 2011-06-24 23:20:59 +00:00
parent c3e3bbf787
commit 363e0c6cfc
52 changed files with 2021 additions and 982 deletions

View file

@ -0,0 +1,15 @@
package zutil.net.update;
import java.io.Serializable;
/**
* A class that contains configuration information
*
* @author Ziver
*/
class UpdateConfigMessage implements Serializable{
private static final long serialVersionUID = 1L;
protected String hashAlgorithm;
protected boolean compression;
}