我通过Perl
Api连接到use P4;
my $perforceObject = new P4;
$perforceObject->SetPort( 'test-1234:8080');
$perforceObject->SetUser( 'user1234');
# try to connect for 10s or abort unless the connection is aborted automatically
$perforceObject->Connect();
服务器,我想知道连接操作是否在一段时间后中止,或者我必须从{{1代码。
/* the tab link */
<a class="nav-tab <?php echo $active_tab == 'my_customs_options' ? 'nav-tab-active' : ''; ?>" href="?page=my_custom_settings&tab=my_custom_options">My Options</a>
/* the link action */
if( $active_tab == 'my_custom_options' ) {
settings_fields( 'my_custom_options' );
do_settings_sections( 'my_custom_options' );
}
/* the case */
switch ( $_GET['tab'] ) {
default :
case 'my_custom_options' :
include 'edit.php?post_type=my_options';
break;
...
}
答案 0 :(得分:2)
据我所知,Perforce没有自己的内置超时,而是取决于操作系统的TCP / IP实现。我很确定大多数系统在10秒钟之前都会失败初始连接所以你应该没问题,而不必添加自己的kill开关。