List of usage examples for android.net ProxyInfo getPort
public int getPort()
From source file:android.net.ProxyInfo.java
/** * @hide//w ww .j ava2 s.com */ public ProxyInfo(ProxyInfo source) { if (source != null) { mHost = source.getHost(); mPort = source.getPort(); mPacFileUrl = source.mPacFileUrl; mExclusionList = source.getExclusionListAsString(); mParsedExclusionList = source.mParsedExclusionList; } else { mPacFileUrl = Uri.EMPTY; } }