导航菜单

页面标题

页面副标题

饼干视频 v4.1.0 - C3569.java 源代码

正在查看: 饼干视频 v4.1.0 应用的 C3569.java JAVA 源代码文件

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


package amc.cd.p528;

import amc.cd.p479.C2945;
import org.fourthline.cling.model.message.header.InvalidHeaderException;
import org.fourthline.cling.model.message.header.UpnpHeader;

public class C3569 extends UpnpHeader<C2945> {

    public int f6445 = 1900;

    public String f6444 = "239.255.255.250";

    public C3569() {
        m33718(new C2945("239.255.255.250", 1900));
    }

    @Override
    public void mo5608(String str) throws InvalidHeaderException {
        if (!str.contains(":")) {
            this.f6444 = str;
            m33718(new C2945(str, this.f6445));
            return;
        }
        try {
            this.f6445 = Integer.valueOf(str.substring(str.indexOf(":") + 1)).intValue();
            String substring = str.substring(0, str.indexOf(":"));
            this.f6444 = substring;
            m33718(new C2945(substring, this.f6445));
        } catch (NumberFormatException e) {
            throw new InvalidHeaderException("Invalid HOST header value, can't parse port: " + str + " - " + e.getMessage());
        }
    }

    @Override
    public String mo5609() {
        return m33717().toString();
    }
}