Bonjour On détaille ici une fonction faisant partie de notre renifleur de paquets
<funcprototype> void got_packet(u_char *args, const struct pcap_pkthdr *header, const u_char *packet); </funcprototype>
je laisse à votre sagacité le soin de rectifier d'éventuelles approximations .
Let's examine this in more detail: first, you'll notice that the function has a void return type. This is logical, because pcap_loop() wouldn't know how to handle a return value anyway. The first argument corresponds to the last argument of pcap_loop(). Whatever value is passed as the last argument to pcap_loop() is passed to the first argument of our callback function, every time the function is called. The second argument is the pcap header, which contains information about when the packet was sniffed, how large it is, etc. The pcap_pkthdr structure is defined in pcap.h:
Examinons ceci plus en détails : premièrement, vous noterez que la fonction comporte un type de retour<foreignphrase>void</foreignphrase>. C'est logique, parce que <function>pcap_loop()</function> ne saurait de toute façon comment manipuler une valeur de retour. Le premier argument correspond au dernier argument de <function>pcap_loop()</function>. Quelque soit la valeur passée pendant que le dernier argument de <function>pcap_loop()</function> est transmis au premier argument de notre function de rappel, chaque fois que la fonction est appelée. Le second argument est l'en-tête <application>pcap</application>r, qui indique quand le paquet a été reniflé, sa largeur, etc. La structure de <function>pcap_pkthdr</function> est définie dans <prototype>pcap.h</prototype> :
merci
Afficher les réponses par date
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
deny a écrit :
Bonjour On détaille ici une fonction faisant partie de notre renifleur de paquets
<funcprototype> void got_packet(u_char *args, const struct pcap_pkthdr *header, const u_char *packet); </funcprototype>
je laisse à votre sagacité le soin de rectifier d'éventuelles approximations .
Let's examine this in more detail: first, you'll notice that the function has a void return type. This is logical, because pcap_loop() wouldn't know how to handle a return value anyway. The first argument corresponds to the last argument of pcap_loop(). Whatever value is passed as the last argument to pcap_loop() is passed to the first argument of our callback function, every time the function is called. The second argument is the pcap header, which contains information about when the packet was sniffed, how large it is, etc. The pcap_pkthdr structure is defined in pcap.h:
Bonjour à tous le monde. Je propose:
Examinons ceci plus en détails : premièrement, vous noterez que la fonction comporte un type de retour<foreignphrase>void</foreignphrase>. C'est logique, parce que <function>pcap_loop()</function> ne saurait de toute façon PAS comment PRENDRE EN COMPTE (manipuler) une valeur de retour. Le premier argument correspond au dernier argument de <function>pcap_loop()</function>. QUELLE QUE (Quelque) soit la valeur passée EN DERNIER ARGUMENT (pendant que le dernier argument de) à <function>pcap_loop()</function> CELLE-CI est transmise COMME (au) premier argument à (de) notre function de rappel, chaque fois que la fonction est appelée. Le second argument est l'en-tête <application>pcap</application>r, qui indique quand le paquet a été reniflé, sa TAILLE (largeur), etc. La structure de <function>pcap_pkthdr</function> est définie dans <prototype>pcap.h</prototype> :
merci _______________________________________________ Liste de discussion Traduc Traduc@traduc.org http://www.traduc.org/mailman/listinfo/traduc [/!\ Les pièces-jointes doivent attendre l'approbation du modérateur.]
Bon 14 juillet à tous. Amicalement.
- -- Dagda, Dia maith
Examinons ceci plus en détails : premièrement, vous noterez que la fonction comporte un type de retour<foreignphrase>void</foreignphrase>. C'est logique, parce que <function>pcap_loop()</function> ne saurait de toute façon PAS comment PRENDRE EN COMPTE (manipuler) une valeur de retour. Le premier argument correspond au dernier argument de <function>pcap_loop()</function>. QUELLE QUE (Quelque) soit la valeur passée EN DERNIER ARGUMENT (pendant que le dernier argument de) à <function>pcap_loop()</function> CELLE-CI est transmise COMME (au) premier argument à (de) notre function de rappel, chaque fois que la fonction est appelée. Le second argument est l'en-tête <application>pcap</application>r, qui indique quand le paquet a été reniflé, sa TAILLE (largeur), etc. La structure de <function>pcap_pkthdr</function> est définie dans <prototype>pcap.h</prototype> :
effectivement c'est un peu plus clair merci pour cette aide .