Lines Matching refs:host
344 …ed\|^Security extensions not\|No such file\|: connect to address [0-9a-fA-F:]*: No route to host$')
2067 " attempt to repeat with previous host-file-etc
2158 " ER: the tmpfile is full path: rcp sees C:\... as host C
2378 " fetch://[user@]host[:http]/path
2497 " attempt to repeat with previous host-file-etc
3098 …" ftpurm : ftp://[user@]host[[#:]port]/filename Use ftp + <.netrc> or g:netrw_uid s:netrw_passwd
3099 " rcpurm : rcp://[user@]host/filename Use rcp
3100 " rcphf : [user@]host:filename Use rcp
3101 " scpurm : scp://[user@]host[[#:]port]/filename Use scp
3102 " httpurm : http[s]://[user@]host/filename Use wget
3103 " davurm : dav[s]://host[:port]/path Use cadaver/curl
3104 " rsyncurm : rsync://host[:port]/path Use rsync
3105 " fetchurm : fetch://[user@]host[:http]/filename Use fetch (defaults to ftp, override for http)
3106 " sftpurm : sftp://[user@]host/filename Use scp
3107 " fileurm : file://[user@]host/filename Use elinks or links
3195 let host= substitute(g:netrw_machine,'\..*$','','')
3196 if exists("s:netrw_hup[host]")
3197 call NetUserPass("ftp:".host)
3232 " call Decho("(ftp) host id pass file",'~'.expand("<slnum>"))
3242 " call Decho("(ftp) host file",'~'.expand("<slnum>"))
3263 " call Decho("(rcp) [user@]host:file) rcphf<".rcphf.">",'~'.expand("<slnum>"))
3351 " :call NetUserPass("ftp:host") -- looks up userid and password using hup dictiona…
3352 " :call NetUserPass("host","uid","password") -- sets hup dictionary with host, userid, password
3364 " change host and username if not previously entered; get new password
3376 let host = substitute(g:netrw_machine,'\..*$','','')
3377 if !exists('s:netrw_hup[host]')
3378 let s:netrw_hup[host]= {}
3380 let s:netrw_hup[host].uid = g:netrw_uid
3381 let s:netrw_hup[host].passwd = s:netrw_passwd
3387 " get host from ftp:... url
3388 " access userid and password from hup (host-user-passwd) dictionary
3389 " call Decho("case a:0=1: a:1<".a:1."> (get host from ftp:... url)",'~'.expand("<slnum>"))
3390 let host = substitute(a:1,'^ftp:','','')
3391 let host = substitute(host,'\..*','','')
3392 if exists("s:netrw_hup[host]")
3393 let g:netrw_uid = s:netrw_hup[host].uid
3394 let s:netrw_passwd = s:netrw_hup[host].passwd
3395 " call Decho("get s:netrw_hup[".host."].uid <".s:netrw_hup[host].uid.">",'~'.expand("<slnum>"))
3396 " call Decho("get s:netrw_hup[".host."].passwd<".s:netrw_hup[host].passwd.">",'~'.expand("<slnum…
3404 " call Decho("case a:0=1: a:1<".a:1."> (get host from input argument, not an url)",'~'.expand("<s…
3407 let host= g:netrw_machine
3409 let host= substitute(g:netrw_machine,'\..*$','','')
3424 " call Decho("host<".host.">",'~'.expand("<slnum>"))
3425 if exists("host")
3426 if !exists('s:netrw_hup[host]')
3427 let s:netrw_hup[host]= {}
3429 let s:netrw_hup[host].uid = g:netrw_uid
3430 let s:netrw_hup[host].passwd = s:netrw_passwd
3439 let host = substitute(a:1,'^\a\+:','','')
3440 let host = substitute(host,'\..*$','','')
3441 if !exists('s:netrw_hup[host]')
3442 let s:netrw_hup[host]= {}
3444 let s:netrw_hup[host].uid = a:2
3445 let s:netrw_hup[host].passwd = a:3
3446 let g:netrw_uid = s:netrw_hup[host].uid
3447 let s:netrw_passwd = s:netrw_hup[host].passwd
3448 " call Decho("set s:netrw_hup[".host."].uid <".s:netrw_hup[host].uid.">",'~'.expand("<slnum>"))
3449 " call Decho("set s:netrw_hup[".host."].passwd<".s:netrw_hup[host].passwd.">",'~'.expand("<slnum>"…
10186 let host= substitute(g:netrw_machine,'\..*$','','')
10187 " call Decho("host<".host.">",'~'.expand("<slnum>"))
10188 if exists("s:netrw_hup") && exists("s:netrw_hup[host]")
10189 call NetUserPass("ftp:".host)
12269 " s:RemoteSystem: runs a command on a remote host using ssh {{{2