| Server IP : 103.4.122.14 / Your IP : 216.73.216.103 Web Server : Apache/2.4.62 (Unix) OpenSSL/1.0.2k-fips System : Linux cwp2.slnet.com.au 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : statewid ( 1251) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/systemtap/tapset/dyninst/ |
Upload File : |
/* Some functions from libc <arpa/inet.h> */
/* NB: functionally equivalent to linux/inet.stp
* ... but we have the advantage of using (mostly) direct equivalents!
*/
%{
#include <arpa/inet.h>
#include <endian.h>
%}
function htonll:long (x:long)
%{
/* pure */ STAP_RETVALUE = htobe64 ((uint64_t) STAP_ARG_x);
%}
function htonl:long (x:long)
%{
/* pure */ STAP_RETVALUE = htonl ((uint32_t) STAP_ARG_x);
%}
function htons:long (x:long)
%{
/* pure */ STAP_RETVALUE = htons ((uint16_t) STAP_ARG_x);
%}
function ntohll:long (x:long)
%{
/* pure */ STAP_RETVALUE = be64toh ((uint64_t) STAP_ARG_x);
%}
function ntohl:long (x:long)
%{
/* pure */ STAP_RETVALUE = ntohl ((uint32_t) STAP_ARG_x);
%}
function ntohs:long (x:long)
%{
/* pure */ STAP_RETVALUE = ntohs ((uint16_t) STAP_ARG_x);
%}