You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
408 B
14 lines
408 B
6 years ago
|
pragma solidity >=0.4.22 <0.6.0;
|
||
|
|
||
5 years ago
|
interface NodeRulesProxy {
|
||
6 years ago
|
function connectionAllowed(
|
||
6 years ago
|
bytes32 sourceEnodeHigh,
|
||
|
bytes32 sourceEnodeLow,
|
||
|
bytes16 sourceEnodeIp,
|
||
|
uint16 sourceEnodePort,
|
||
|
bytes32 destinationEnodeHigh,
|
||
|
bytes32 destinationEnodeLow,
|
||
|
bytes16 destinationEnodeIp,
|
||
|
uint16 destinationEnodePort
|
||
6 years ago
|
) external view returns (bytes32);
|
||
6 years ago
|
}
|