Home | History | Annotate | Download | only in pxe

Lines Matching refs:ui

62 void parse_url(struct url_info *ui, char *url)
68 memset(ui, 0, sizeof *ui);
72 ui->type = URL_NORMAL;
74 ui->scheme = p;
81 ui->path = q+1;
86 ui->path = "";
91 ui->user = p;
96 ui->passwd = s+1;
101 ui->host = p;
105 ui->port = 0;
110 ui->port = ui->port * 10 + c;
115 ui->scheme = "tftp";
116 ui->host = p;
117 ui->path = q+2;
118 ui->type = URL_OLD_TFTP;
120 ui->path = p;
121 ui->type = URL_SUFFIX;