老派问题:Wardialers,测试什么条件来查看是否连接了另一台计算机?
我想知道使用什么条件来检查线路另一端的连接。
情况 1:计算机拨打一个号码,有人拿起电话,计算机断开连接并转到下一个电话号码。
情况2:计算机拨打号码,调制解调器应答,计算机断开连接并将该号码记录为计算机。
为此将使用什么样的 if/else 语句?
I was wondering what conditions were used to check the connection at the other end of the line.
Case 1: Computer dials a number, and a human picks up the phone, computer disconnects and moves on to the next phone number.
Case 2: Computer dials a number, and a modem answers, computer disconnects and records the number as being a computer.
What sort of if/else statement would be used for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您当然可以递归地执行此操作,使用类似于此的内容...
m_modemToneDetected 是一个布尔值,将在调用 DialNumber() 期间进行调整
You could of course do it recursively, using something similar to this...
m_modemToneDetected being a boolean that would be adjusted during the call to DialNumber()