use of org.batfish.representation.juniper.FwFromProtocol in project batfish by batfish.
the class ConfigurationBuilder method exitFftf_protocol.
@Override
public void exitFftf_protocol(Fftf_protocolContext ctx) {
IpProtocol protocol = toIpProtocol(ctx.ip_protocol());
FwFrom from = new FwFromProtocol(protocol);
_currentFwTerm.getFroms().add(from);
}
Aggregations