19 lines
270 B
Java
19 lines
270 B
Java
package com.mogo.httpdns;
|
|
|
|
import androidx.annotation.Keep;
|
|
import androidx.annotation.Nullable;
|
|
|
|
public
|
|
/**
|
|
* @author congtaowang
|
|
* @since 2020/11/19
|
|
*
|
|
* dns 解析回调
|
|
*/
|
|
@Keep
|
|
interface IHttpDnsCallback {
|
|
|
|
@Keep
|
|
void onParsed( @Nullable String ip );
|
|
}
|