Allow to set interface for outgoing replication / net.box connections.
For example:
-- Legacy configuration.
box.cfg{
replication = {
{uri = 'localhost:3310', interface = 'eth0'}
}
}
-- Net.box
net_box.connect({
uri = 'localhost:3310',
interface = 'eth0',
})
-- Yaml config
iproto.advertise.peer.interface: 'eth0'
JIRA issue: https://jira.vk.team/browse/TNTP-3650