return attach(host, outboundPort, inboundPort, parser, llp, tls);
}
public Connection attachLazily(String host, int outboundPort, int inboundPort, Parser parser,
Class<? extends LowerLayerProtocol> llpClass, boolean tls) throws HL7Exception {
LowerLayerProtocol llp = ReflectionUtil.instantiate(llpClass);
return attachLazily(host, outboundPort, inboundPort, parser, llp, tls);
}