Linux server.nvwebsoft.co.in 3.10.0-1160.114.2.el7.x86_64 #1 SMP Wed Mar 20 15:54:52 UTC 2024 x86_64
Apache
: 162.240.12.249 | : 3.146.206.87
202 Domain
8.1.31
nbspublicschool
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
include /
collectd /
[ HOME SHELL ]
Name
Size
Permission
Action
client.h
3.46
KB
-rw-r--r--
lcc_features.h
1.98
KB
-rw-r--r--
network.h
2.59
KB
-rw-r--r--
network_buffer.h
2.38
KB
-rw-r--r--
network_parse.h
2.04
KB
-rw-r--r--
server.h
3.34
KB
-rw-r--r--
types.h
2.94
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : network_parse.h
/** * Copyright 2017 Florian Forster * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * Authors: * Florian octo Forster <octo at collectd.org> **/ #ifndef LIBCOLLECTD_NETWORK_PARSE_H #define LIBCOLLECTD_NETWORK_PARSE_H 1 #include "collectd/lcc_features.h" #include "collectd/network.h" /* for lcc_security_level_t */ #include "collectd/types.h" #include <stdint.h> LCC_BEGIN_DECLS typedef struct { /* writer is the callback used to send incoming lcc_value_list_t to. */ lcc_value_list_writer_t writer; /* password_lookup is used to look up the password for a given username. */ lcc_password_lookup_t password_lookup; /* security_level is the minimal required security level. */ lcc_security_level_t security_level; } lcc_network_parse_options_t; /* lcc_network_parse parses data received from the network and calls "w" with * the parsed lcc_value_list_ts. */ int lcc_network_parse(void *buffer, size_t buffer_size, lcc_network_parse_options_t opts); LCC_END_DECLS #endif /* LIBCOLLECTD_NETWORK_PARSE_H */
Close