!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/src/linux-headers-5.4.0-216/include/trace/events/   drwxr-xr-x
Free 13.3 GB of 57.97 GB (22.94%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     qdisc.h (1.36 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#undef TRACE_SYSTEM
#define TRACE_SYSTEM qdisc

#if !defined(_TRACE_QDISC_H) || defined(TRACE_HEADER_MULTI_READ)
#define _TRACE_QDISC_H

#include <linux/skbuff.h>
#include <linux/netdevice.h>
#include <linux/tracepoint.h>
#include <linux/ftrace.h>

TRACE_EVENT(qdisc_dequeue,

    TP_PROTO(struct Qdisc *qdisc, const struct netdev_queue *txq,
         int packets, struct sk_buff *skb),

    TP_ARGS(qdisc, txq, packets, skb),

    TP_STRUCT__entry(
        __field(    struct Qdisc *,        qdisc    )
        __field(const    struct netdev_queue *,    txq    )
        __field(    int,            packets    )
        __field(    void *,            skbaddr    )
        __field(    int,            ifindex    )
        __field(    u32,            handle    )
        __field(    u32,            parent    )
        __field(    unsigned long,        txq_state)
    ),

    /* skb==NULL indicate packets dequeued was 0, even when packets==1 */
    TP_fast_assign(
        __entry->qdisc        = qdisc;
        __entry->txq        = txq;
        __entry->packets    = skb ? packets : 0;
        __entry->skbaddr    = skb;
        __entry->ifindex    = txq->dev ? txq->dev->ifindex : 0;
        __entry->handle        = qdisc->handle;
        __entry->parent        = qdisc->parent;
        __entry->txq_state    = txq->state;
    ),

    TP_printk("dequeue ifindex=%d qdisc handle=0x%X parent=0x%X txq_state=0x%lX packets=%d skbaddr=%p",
          __entry->ifindex, __entry->handle, __entry->parent,
          __entry->txq_state, __entry->packets, __entry->skbaddr )
);

#endif /* _TRACE_QDISC_H */

/* This part must be outside protection */
#include <trace/define_trace.h>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0235 ]--