导航菜单

页面标题

页面副标题

CleanTube v9.9.5 - a.java 源代码

正在查看: CleanTube v9.9.5 应用的 a.java JAVA 源代码文件

本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。


package R2;

import java.net.InetAddress;
import java.net.InetSocketAddress;

public enum a {
    IP_V4("239.255.255.250", "239.255.255.246"),
    IP_V6("FF02::C", "FF02::130");


    private final InetAddress f2556e;

    private final InetSocketAddress f2557f;

    private final String f2558g;

    private final InetAddress f2559h;

    a(String str, String str2) {
        InetAddress byName = InetAddress.getByName(str);
        o1.k.e(byName, "InetAddress.getByName(ssdpAddress)");
        this.f2556e = byName;
        InetSocketAddress inetSocketAddress = new InetSocketAddress(byName, 1900);
        this.f2557f = inetSocketAddress;
        this.f2558g = U2.b.n(inetSocketAddress);
        InetAddress byName2 = InetAddress.getByName(str2);
        o1.k.e(byName2, "InetAddress.getByName(eventAddress)");
        this.f2559h = byName2;
    }

    public final InetAddress a() {
        return this.f2559h;
    }

    public final String d() {
        return this.f2558g;
    }

    public final InetAddress e() {
        return this.f2556e;
    }

    public final InetSocketAddress h() {
        return this.f2557f;
    }
}