voip 是英文(Voice over IP)的缩写:这种技术将语音或传真的模拟信号转化为IP 数据封包格式传送,在接受端进行组合,还原成连续的语音信号。 从它的应用形式进行分类:PC-PC(电脑对电脑)、PC-PHONE(电脑对电话机)、PHONE-PC(电话机对电脑)、PHONE-PHONE(电 话机对电话机)四类。所谓的PHONE是指传统电话机或网络电话机。 voip系统现在使用的协议大致可分为三类:一类是被国际电联定为标准的H323;一类是由国际互联网协会推荐...
by shijiang1130 - 网络技术文档中心 - 2007-02-06 11:18:39 阅读(851) 回复(0)
在传统电话系统中,一次通话从建立系统连接到拆除连接都需要一定的信令来配合完成。同样,在IP电话中,如何寻找被叫方、如何建立应答、如何按照彼此的数据处理能力发送数据,也需要相应的信令系统,一般称为协议。目前在国际上,比较有景响的IP电话方面的协议包括ITU-T提出的H.323协议和IETE提出的SIP协议,本节主要介绍目前用得最广泛H.323协议。 一、H.323的体系结构 为了能在不保证QoS的分组交换网络上展...
1: Building configuration... 2: 3: Current configuration : 3258 bytes 4: ! 5: version 12.3 6: service timestamps debug datetime msec 7: service time stamps log datetime msec 8: no service password-encryption 9: ! 10: hostname D-HPM-2611XM-1 11: ! 12: boot-start-marker 13: boot-end-marker 14: ! 15: card type e1 1 1 16: logging buffered 4096 debugging 17: enable password xxx...
1: Building configuration... 2: 3: Current configuration : 3258 bytes 4: ! 5: version 12.3 6: service timestamps debug datetime msec 7: service timestamps log datetime msec 8: no service password-encryption 9: ! 10: hostname D-HPM-2611XM-1 11: ! 12: boot-start-marker 13: boot-end-marker 14: ! 15: card type e1 1 1 16: logging buffered 4096 debugging 17: enable password xxxxx 18: ! 19: no aa...
本帖最后由 yshihyu 于 2012-07-21 01:28 编辑 [code]public static interface IRequest { public void execute(); } [/code][code]public interface IRequest { public void execute(); } [/code]请问 inferface 有无加上 static 差异在哪? 谢谢
class Car{ } class FastCar extends Car implements ISpeedInfo { function getMaximumSpeed() { return 150; } } class Street { protected $speedLimit; protected $cars; public function __construct($speedLimit = 200) { $this->cars = array(); $this->speedLimit = $speedLimit; } protected function isStreetLegal($car) { i...