Hello,
 
I am trying to locate the code that implements the neighbor discovery for the Android applications.  So far, I have found:
 * NeighborList.java in ibrdtn/de.tubs.ibr.dtn.daemon calls service.getNeighbors().
 * getNeighbors() (found in the Java API (ibrdtnlib)) calls query("neighbor list") and _receiver.getList().
 * query(cmd) calls _writer.write(cmd) which writes out a buffer.
 * _receiver.getList() returns a list that seems to be populated by a read from the same socket used above.
 
This seems to me to be the client side of the client/server model.  I think I need to find the server side to find the neighbor discovery implementation.  Any help would be much appreciated.
 
Sincerely,
 
Justin