MCPcopy Create free account
hub / github.com/annmuor/jnode / isOurPoint

Method isOurPoint

jnode-core/src/jnode/ftn/FtnTools.java:950–960  ·  view source on GitHub ↗
(FtnAddress routeTo)

Source from the content-addressed store, hash-verified

948 }
949
950 public static boolean isOurPoint(FtnAddress routeTo) {
951 boolean ourPoint = false;
952 for (FtnAddress testAddress : MainHandler.getCurrentInstance()
953 .getInfo().getAddressList()) {
954 if (routeTo.isPointOf(testAddress)) {
955 ourPoint = true;
956 break;
957 }
958 }
959 return ourPoint;
960 }
961
962 /**
963 * Пишем ответ на нетмейл

Callers 3

getRoutingMethod · 0.95
getRoutingFallbackMethod · 0.95

Calls 4

getCurrentInstanceMethod · 0.95
getAddressListMethod · 0.80
getInfoMethod · 0.80
isPointOfMethod · 0.80

Tested by

no test coverage detected