Wsock32.dll / VB6 / recv / blockage
Fermé
xval
Messages postés
66
Date d'inscription
samedi 11 septembre 2004
Statut
Membre
Dernière intervention
19 octobre 2006
-
1 juin 2005 à 05:41
xval Messages postés 66 Date d'inscription samedi 11 septembre 2004 Statut Membre Dernière intervention 19 octobre 2006 - 2 juin 2005 à 23:27
xval Messages postés 66 Date d'inscription samedi 11 septembre 2004 Statut Membre Dernière intervention 19 octobre 2006 - 2 juin 2005 à 23:27
A voir également:
- Wsock32.dll / VB6 / recv / blockage
- Vb6 - Télécharger - Divers Utilitaires
- Xinput1_3.dll - Forum Windows
- X3daudio1_7.dll ✓ - Forum Jeux PC
- Msvcr71.dll ✓ - Forum Logiciels
- Problème xinput1_3.dll - Forum Jeux vidéo
1 réponse
xval
Messages postés
66
Date d'inscription
samedi 11 septembre 2004
Statut
Membre
Dernière intervention
19 octobre 2006
2
2 juin 2005 à 23:27
2 juin 2005 à 23:27
Bon, j'ai trouvé la solution au probleme.
Dans wsock32.dll il y a une fonction qui permet de contrôler le comportement de la fonction recv. C'est IOCTLSOCKET
Declare Function ioctlsocket Lib "wsock32.dll" (ByVal s As Long, _
ByVal cmd As Long, _
argp As Long) As Long
Pour le mode non bloquant, utiliser pour cmd FIONBIO=&h8004667E.
xval
Dans wsock32.dll il y a une fonction qui permet de contrôler le comportement de la fonction recv. C'est IOCTLSOCKET
Declare Function ioctlsocket Lib "wsock32.dll" (ByVal s As Long, _
ByVal cmd As Long, _
argp As Long) As Long
Pour le mode non bloquant, utiliser pour cmd FIONBIO=&h8004667E.
xval