//******************************************************************
//******************************************************************
//********** ANts Peer To Peer Sources *************
//
// ANts P2P realizes a third generation P2P net. It protects your
// privacy while you are connected and makes you not trackable, hiding
// your identity (ip) and crypting everything you are sending/receiving
// from others.
// Copyright (C) 2004 Roberto Rossi
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
package ants.p2p;
import java.util.ArrayList;
import ants.p2p.utils.indexer.DigestManager;
public class NetModificationAlert extends Message{
ArrayList unreachablePeers;
public NetModificationAlert(ArrayList unreachablePeers){
this.unreachablePeers = unreachablePeers;
String id;
try{
id = (new DigestManager()).getDigest(System.
currentTimeMillis() + "");
}catch(Exception e){id = Math.floor(Math.random()*Math.pow(10,32))+"";}
this.fillMessageProperties("","","",0,id);
}
public ArrayList getUnreachablePeers(){
return this.unreachablePeers;
}
public void setUnreachablePeers(ArrayList peersList){
this.unreachablePeers = peersList;
}
}