为什么 Windows 在通过线程下载文件时抛出防火墙警报,而不是在从主线程下载时抛出防火墙警报?
为什么 Windows 在通过线程下载文件时抛出防火墙警报,而不是在从主线程下载时抛出防火墙警报?两个代码是相同的!
我怎样才能摆脱这个? (我的用户只有“具有权力的用户”)。
Why windows is throwing an Firewall alert when downloading a file via a thread and not when when downloading from main thread ? Both code are identical !
How can I get rid of this ? (my users have only the "User with power right").
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简短的回答:没有。
长答案:您看到此警告的原因可能与线程无关,而是与您在线程中执行的操作有关。您没有提供任何详细信息(甚至没有提供所使用的协议),因此不可能给出准确的答案,但例如,使用主动 FTP 传输文件将触发防火墙警告,而在被动模式下执行相同的操作则不会。
Short answer: it doesn't.
Long answer: the reason you're seeing this warning is probably unrelated to threading but rather with what you do in your thread. You haven't given any detail (not even the protocol used) so it's impossible to give accurate answer but, for instance, using active FTP for transferring a file will trigger a firewall warning while doing the same thing in passive mode will not.