From professional translators, enterprises, web pages and freely available translation repositories.
tcp
tcp
Last Update: 2011-10-23
Usage Frequency: 1
Quality:
puerto tcp
tcp ポート
Last Update: 2011-10-23
Usage Frequency: 1
Quality:
port tcp/ip:
tcp/ip ポート(c):
Last Update: 2012-05-15
Usage Frequency: 1
Quality:
usar conexión tcp
tcp 接続を使う
Last Update: 2011-10-23
Usage Frequency: 1
Quality:
chaperonina tcp-1
tcp-1遺伝子産物
Last Update: 2014-12-08
Usage Frequency: 1
Quality:
Warning: This alignment may be wrong.
Please delete it you feel so.
puerto tcp/ip:
tcp/ip ポート(c):
Last Update: 2016-11-15
Usage Frequency: 1
Quality:
chaperonina con tcp-1
tcp-1遺伝子産物
Last Update: 2014-12-08
Usage Frequency: 1
Quality:
Warning: This alignment may be wrong.
Please delete it you feel so.
impresora de red (tcp)
ãããã¯ã¼ã¯ããªã³ã¿(t) (tcp)
Last Update: 2011-10-23
Usage Frequency: 1
Quality:
chaperonina que contiene tcp-1
tcp-1遺伝子産物
Last Update: 2014-12-08
Usage Frequency: 1
Quality:
Warning: This alignment may be wrong.
Please delete it you feel so.
configure los parámetros tcp/ ipname
tcp/ip の設定name
Last Update: 2011-10-23
Usage Frequency: 1
Quality:
utilizar puerto tcp/ udp no estándar
標準的でない tcp/udp ポートを使用します
Last Update: 2011-10-23
Usage Frequency: 1
Quality:
chaperonina que contiene la subunidad tcp-1
tcp-1遺伝子産物
Last Update: 2014-12-08
Usage Frequency: 1
Quality:
Warning: This alignment may be wrong.
Please delete it you feel so.
desactivar la compresión de la cabecera tcp/ ip
lzo 圧縮を無効にする(z)
Last Update: 2011-10-23
Usage Frequency: 1
Quality:
configuración de la red este módulo permite configurar las propiedades de tcp/ ip.
ネットワーク設定 このモジュールで tcp/ip を設定します。
Last Update: 2011-10-23
Usage Frequency: 1
Quality:
para el domino internet, abrirá una conexión tcp hacia el ordenador hostname en el puerto port.
注意 ソケット経由でデータを読み書きする際のタイムアウトを設定する必要がある場合、 fsockopen() の timeout パラメータは、 ソケットに接続する間のみ適用されるため、 socket_set_timeout() を使用してください。
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
usar un & archivo de socket en lugar de un puerto tcp/ ip: socket: default
tcp/ip ポートの代わりにソケットファイルを使う(f):socket: default
Last Update: 2011-10-23
Usage Frequency: 1
Quality:
Warning: Contains invisible HTML formatting
?php error_reporting( e_all); echo "h2 tcp / ip connection / h2 \n"; / * get the port for the www service. * / $service_port = getservbyname('www', 'tcp'); / * get the ip address for the target host. * / $address = gethostbyname('www.php.net'); / * create a tcp / ip socket. * / $socket = socket(af_inet, sock_stream, 0); if ($socket 0) {echo "socket() failed: reason:". strerror($socket). "\n";} else {"socket() successful: ". strerror($socket). "\n";} echo "attempting to connect to '$address 'on port '$service_port'.. ."; $result = connect($socket, $address, $service_port); if ($result 0) {echo "connect() failed.\nreason: ($result)". strerror($result). "\n";} else {echo "ok.\n";} $in = "head / http / 1.0\r\n\r\n"; $out = ''; echo "sending http head request.. ."; write($socket, $in, strlen($in)); echo "ok.\n"; echo "reading response:\n\n"; while (read($socket, $out, 2048)) {echo $out;} echo "closing socket.. ."; close($socket); echo "ok.\n\n";?
この例は、簡単な応答サーバーです。変数 address と port を設定と実行環境に合うように変更して下 さい。このサーバーに次のようなコマンドで接続することが可能です。: telnet 192.168.1.53 10000 (ただし、アドレス とポートは設定に合わせます)入力したものは、サーバー側の出力とな り、エコーバックされます。接続を閉じるには、'quit'を入力します。
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
Warning: Contains invisible HTML formatting