Dagger0 / IPvFox

Firefox extension to list the hosts, and corresponding IPs, from which a page and its resources are loaded.
https://addons.mozilla.org/en-US/firefox/addon/ipvfox/
19 stars 8 forks source link

Does not show IP when using ftp protocol #2

Open jpedrot opened 12 years ago

jpedrot commented 12 years ago

Not so much a bug as a feature request, but when connecting to ftp servers ala ftp://ftp.zyxel.com it only displays a ?. Anyway to add support for ftp also?

Dagger0 commented 12 years ago

Not too easily -- it uses the http-on-examine-response notification to get notified about HTTP requests. There doesn't seem to be an equivalent for FTP, so it's not doable with the current design.

I've been eying WebProgressListeners as an alternative way of tracking page loads. The documentation suggests the IP address should be accessible from them, and that they should fire for FTP too. I just need to get round to actually testing it.

(Sorry for the week-long delay; my email server was down.)