File: ipmib-embedded.stp

package info (click to toggle)
systemtap 4.8-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 39,000 kB
  • sloc: cpp: 78,785; ansic: 62,419; xml: 49,443; exp: 42,735; sh: 11,254; python: 3,062; perl: 2,252; tcl: 1,305; makefile: 1,072; lisp: 105; awk: 101; asm: 91; java: 56; sed: 16
file content (23 lines) | stat: -rwxr-xr-x 718 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#! stap -p4 --compatible=2.9

probe begin
{
	printf("%d\n", ipmib_remote_addr(0, 0))
	printf("%d\n", ipmib_local_addr(0, 0))
	printf("%d\n", ipmib_tcp_remote_port(0, 0))
	printf("%d\n", ipmib_tcp_local_port(0, 0))
	printf("%d\n", ipmib_get_proto(0))
	printf("%d\n", _plunge_into_tcphdr(0))
	printf("%d\n", _ehostunreach())
	printf("%d\n", _enetunreach())
	printf("%d\n", _icmp_dest_unreach())
	printf("%d\n", _icmp_prot_unreach())
	printf("%d\n", _net_rx_drop())
	printf("%d\n", _icmp_time_exceeded())
	printf("%d\n", _icmp_exc_fragtime())
	printf("%d\n", _rtn_multicast())
	printf("%d\n", _rtn_broadcast())
	printf("%d\n", _rtn_unspec())
	printf("%d\n", _input_route_type(0))
	printf("%d\n", _output_route_type(0))
}