Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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
/
opt /
miniconda3 /
python /
include /
solv /
[ HOME SHELL ]
Name
Size
Permission
Action
bitmap.h
1.52
KB
-rw-rw-r--
chksum.h
1.16
KB
-rw-rw-r--
conda.h
638
B
-rw-rw-r--
dataiterator.h
4.99
KB
-rw-rw-r--
dirpool.h
1.67
KB
-rw-rw-r--
evr.h
815
B
-rw-rw-r--
hash.h
1.57
KB
-rw-rw-r--
knownid.h
13.69
KB
-rw-rw-r--
policy.h
1.7
KB
-rw-rw-r--
pool.h
13.77
KB
-rw-rw-r--
poolarch.h
1.21
KB
-rw-rw-r--
poolid.h
1.16
KB
-rw-rw-r--
pooltypes.h
1.06
KB
-rw-rw-r--
poolvendor.h
499
B
-rw-rw-r--
problems.h
2.65
KB
-rw-rw-r--
queue.h
2.41
KB
-rw-rw-r--
repo.h
7.85
KB
-rw-rw-r--
repo_conda.h
491
B
-rw-rw-r--
repo_solv.h
557
B
-rw-rw-r--
repo_write.h
1.93
KB
-rw-rw-r--
repodata.h
11.93
KB
-rw-rw-r--
rules.h
6.43
KB
-rw-rw-r--
selection.h
2.55
KB
-rw-rw-r--
solv_xfopen.h
553
B
-rw-rw-r--
solvable.h
3.87
KB
-rw-rw-r--
solver.h
17.66
KB
-rw-rw-r--
solverdebug.h
1.24
KB
-rw-rw-r--
solvversion.h
1.61
KB
-rw-rw-r--
strpool.h
1.44
KB
-rw-rw-r--
testcase.h
2.11
KB
-rw-rw-r--
tools_util.h
1.6
KB
-rw-rw-r--
transaction.h
4.75
KB
-rw-rw-r--
util.h
3.07
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : problems.h
/* * Copyright (c) 2007-2009, Novell Inc. * * This program is licensed under the BSD license, read LICENSE.BSD * for further information */ /* * problems.h * */ #ifndef LIBSOLV_PROBLEMS_H #define LIBSOLV_PROBLEMS_H #include "rules.h" #ifdef __cplusplus extern "C" { #endif struct s_Solver; #define SOLVER_SOLUTION_JOB (0) #define SOLVER_SOLUTION_DISTUPGRADE (-1) #define SOLVER_SOLUTION_INFARCH (-2) #define SOLVER_SOLUTION_BEST (-3) #define SOLVER_SOLUTION_POOLJOB (-4) #define SOLVER_SOLUTION_BLACK (-5) #define SOLVER_SOLUTION_STRICTREPOPRIORITY (-6) /* replace solution types */ #define SOLVER_SOLUTION_ERASE (-100) #define SOLVER_SOLUTION_REPLACE (-101) #define SOLVER_SOLUTION_REPLACE_DOWNGRADE (-102) #define SOLVER_SOLUTION_REPLACE_ARCHCHANGE (-103) #define SOLVER_SOLUTION_REPLACE_VENDORCHANGE (-104) #define SOLVER_SOLUTION_REPLACE_NAMECHANGE (-105) void solver_recordproblem(struct s_Solver *solv, Id rid); void solver_fixproblem(struct s_Solver *solv, Id rid); Id solver_autouninstall(struct s_Solver *solv, int start); void solver_disableproblemset(struct s_Solver *solv, int start); int solver_prepare_solutions(struct s_Solver *solv); unsigned int solver_problem_count(struct s_Solver *solv); Id solver_next_problem(struct s_Solver *solv, Id problem); unsigned int solver_solution_count(struct s_Solver *solv, Id problem); Id solver_next_solution(struct s_Solver *solv, Id problem, Id solution); unsigned int solver_solutionelement_count(struct s_Solver *solv, Id problem, Id solution); Id solver_solutionelement_internalid(struct s_Solver *solv, Id problem, Id solution); Id solver_solutionelement_extrajobflags(struct s_Solver *solv, Id problem, Id solution); Id solver_next_solutionelement(struct s_Solver *solv, Id problem, Id solution, Id element, Id *p, Id *rp); void solver_all_solutionelements(struct s_Solver *solv, Id problem, Id solution, int expandreplaces, Queue *q); void solver_take_solutionelement(struct s_Solver *solv, Id p, Id rp, Id extrajobflags, Queue *job); void solver_take_solution(struct s_Solver *solv, Id problem, Id solution, Queue *job); Id solver_findproblemrule(struct s_Solver *solv, Id problem); void solver_findallproblemrules(struct s_Solver *solv, Id problem, Queue *rules); extern const char *solver_problemruleinfo2str(struct s_Solver *solv, SolverRuleinfo type, Id source, Id target, Id dep); extern const char *solver_problem2str(struct s_Solver *solv, Id problem); extern const char *solver_solutionelement2str(struct s_Solver *solv, Id p, Id rp); extern const char *solver_solutionelementtype2str(struct s_Solver *solv, int type, Id p, Id rp); #ifdef __cplusplus } #endif #endif
Close