在 Android 上使用 tcpdump 时出现延迟 - 为什么?
我编写了一个 Android 应用程序,它使用 ProcessBuilder 在进程中启动 tcpdump。 当我启动进程并轮询 InputStream 时,有时会发生第一个输出在 20-30 秒后写入的情况 - 尽管数据包已被捕获。
我使用 tcpdump -l 因此输出是行缓冲的。
当我对进程进行一些重新启动(killall)时,它会立即响应新数据包。
有人有什么建议吗? 网络堆栈上是否有任何必须首先清除的缓冲?
感谢您的任何建议!
I have written an Android application which starts tcpdump in a Process using ProcessBuilder.
When I start the process and poll on the InputStream, then it SOMETIMES happens, that the first output is written after 20-30 secs - although packets have been captured.
I use tcpdump -l so output is linebuffered.
When I do some restarts on the process (killall) then it responds immediately on new packets.
Anyone any suggestions?
Is there any buffering on the network stack which has to be cleared first?
Thanks for any suggestions!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许尝试 tcpdump -n 这样它就不会尝试将 ip 解析为主机名?
在重新运行时,查找可能会在本地缓存,因此运行速度更快。
Maybe try tcpdump -n so it doesn't try to resolve ip's to hostnames?
On the reruns, the lookups may be locally cached so it runs faster.