2021-06-15 00:49:18 -07:00
|
|
|
---
|
|
|
|
id: 5ea9997bbec2e9bc47e94db0
|
2021-07-19 22:22:21 +05:30
|
|
|
title: Creare un client TCP
|
2021-06-15 00:49:18 -07:00
|
|
|
challengeType: 11
|
|
|
|
videoId: ugYfJNTawks
|
|
|
|
dashedName: creating-a-tcp-client
|
|
|
|
---
|
|
|
|
|
|
|
|
# --question--
|
|
|
|
|
|
|
|
## --text--
|
|
|
|
|
2021-07-19 22:22:21 +05:30
|
|
|
Quale metodo di socket ti consente di impostare la quantità massima di dati che il tuo client accetta contemporaneamente?
|
2021-06-15 00:49:18 -07:00
|
|
|
|
|
|
|
## --answers--
|
|
|
|
|
|
|
|
`.recv(1024)`
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
`.decode('ascii')`
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
`.connect(host, port)`
|
|
|
|
|
|
|
|
## --video-solution--
|
|
|
|
|
|
|
|
1
|
|
|
|
|