Merge branch 'next'

This commit is contained in:
Michael Tremer
2024-08-23 09:22:37 +00:00
342 changed files with 81521 additions and 78151 deletions

5
.gitignore vendored
View File

@@ -1,11 +1,12 @@
/.DS_Store
/.config
/build
/build_*
/cache
/ccache
/doc/ChangeLog
/doc/packages-list.txt
/images_*
/log
/log_*
/packages
/tmp
/*.diff

View File

@@ -2,7 +2,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
# Copyright (C) 2007-2022 IPFire Team <info@ipfire.org> #
# Copyright (C) 2007-2024 IPFire Team <info@ipfire.org> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
@@ -21,7 +21,7 @@
shopt -s nullglob
NOW="$(date "+%Y-%m-%d-%H:%M")"
NOW="$(date "+%Y-%m-%d-%H%M")"
list_addons() {
local file
@@ -82,7 +82,8 @@ restore_backup() {
# Extract backup
if ! tar xvzpf "${filename}" -C / \
--exclude-from="/var/ipfire/backup/exclude" \
--exclude-from="/var/ipfire/backup/exclude.user"; then
--exclude-from="/var/ipfire/backup/exclude.user" \
--force-local; then
echo "Could not extract backup" >&2
return 1
fi

View File

@@ -19,7 +19,6 @@ use Socket;
use IO::Socket;
use Net::SSLeay;
use Net::IPv4Addr qw(:all);
$|=1; # line buffering
$General::version = 'VERSION';
$General::swroot = 'CONFIG_ROOT';
@@ -98,6 +97,82 @@ sub system($) {
return $rc;
}
sub read_pids($) {
my $pidfile = shift;
# Open the PID file
open(PIDFILE, "<${pidfile}");
# Store all PIDs here
my @pids = ();
# Read all PIDs
while (<PIDFILE>) {
chomp $_;
if (-d "/proc/$_") {
push(@pids, $_);
}
}
# Close the PID file
close(PIDFILE);
return @pids;
}
sub find_pids($) {
my $process = shift;
# Store all PIDs here
my @pids = ();
foreach my $status (</proc/*/status>) {
# Open the status file
open(STATUS, "<${status}");
# Read the status file
while (<STATUS>) {
# If the name does not match, we break the loop immediately
if ($_ =~ m/^Name:\s+(.*)$/) {
last if ($process ne $1);
# Push the PID onto the list
} elsif ($_ =~ m/^Pid:\s+(\d+)$/) {
push(@pids, $1);
# Once we got here, we are done
last;
}
}
# Close the status file
close(STATUS);
}
return @pids;
}
sub get_memory_consumption() {
my $memory = 0;
foreach my $pid (@_) {
# Open the status file or skip on error
open(STATUS, "/proc/${pid}/status") or next;
while (<STATUS>) {
if ($_ =~ m/^VmRSS:\s+(\d+) kB/) {
$memory += $1 * 1024;
last;
}
}
close(STATUS);
}
return $memory;
}
# Function to remove duplicates from an array
sub uniq { my %seen; grep !$seen{$_}++, @_ }
@@ -116,15 +191,13 @@ sub log
}
sub setup_default_networks
{
my %netsettings=();
my %netsettings = %Network::ethernet;
my $defaultNetworks = shift;
&readhash("/var/ipfire/ethernet/settings", \%netsettings);
# Get current defined networks (Red, Green, Blue, Orange)
$defaultNetworks->{$Lang::tr{'fwhost any'}}{'IPT'} = "0.0.0.0/0.0.0.0";
$defaultNetworks->{$Lang::tr{'fwhost any'}}{'NAME'} = "ALL";
$defaultNetworks->{$Lang::tr{'green'}}{'IPT'} = "$netsettings{'GREEN_NETADDRESS'}/$netsettings{'GREEN_NETMASK'}";
$defaultNetworks->{$Lang::tr{'green'}}{'NET'} = "$netsettings{'GREEN_ADDRESS'}";
$defaultNetworks->{$Lang::tr{'green'}}{'NAME'} = "GREEN";
@@ -145,7 +218,7 @@ sub setup_default_networks
$defaultNetworks->{$Lang::tr{'blue'}}{'NET'} = "$netsettings{'BLUE_ADDRESS'}";
$defaultNetworks->{$Lang::tr{'blue'}}{'NAME'} = "BLUE";
}
#IPFire himself
$defaultNetworks->{'IPFire'}{'NAME'} = "IPFire";
@@ -172,18 +245,18 @@ sub setup_default_networks
&readhash("${General::swroot}/vpn/settings", \%ipsecsettings);
if($ipsecsettings{'RW_NET'} ne '')
{
my ($ip,$sub) = split(/\//,$ipsecsettings{'RW_NET'});
$sub=&General::iporsubtocidr($sub);
my @tempipsecsubnet = split("\/", $ipsecsettings{'RW_NET'});
$defaultNetworks->{'IPsec RW (' .$ip."/".$sub.")"}{'ADR'} = $tempipsecsubnet[0];
$defaultNetworks->{'IPsec RW (' .$ip."/".$sub.")"}{'NAME'} = "IPsec RW";
$defaultNetworks->{'IPsec RW (' .$ip."/".$sub.")"}{'NET'} = &getnextip($ip);
my $netaddress = &Network::get_netaddress($ipsecsettings{'RW_NET'});
my $prefix = &Network::get_prefix($ipsecsettings{'RW_NET'});
$defaultNetworks->{"IPsec RW (${netaddress}/${prefix})"}{'ADR'} = $netaddress;
$defaultNetworks->{"IPsec RW (${netaddress}/${prefix})"}{'NAME'} = "IPsec RW";
$defaultNetworks->{"IPsec RW (${netaddress}/${prefix})"}{'NET'} = $netaddress;
}
}
}
sub get_aliases
{
my $defaultNetworks = shift;
open(FILE, "${General::swroot}/ethernet/aliases") or die 'Unable to open aliases file.';
my @current = <FILE>;
@@ -199,25 +272,36 @@ sub get_aliases
}
$defaultNetworks->{$temp[2]}{'IPT'} = "$temp[0]";
$defaultNetworks->{$temp[2]}{'NET'} = "$temp[0]";
$ctr++;
}
}
}
sub set_defaults($$) {
my $hash = shift;
my $defaults = shift;
foreach my $key (keys %$defaults) {
unless (defined($hash->{$key})) {
$hash->{$key} = $defaults->{$key};
}
}
}
sub readhash
{
my $filename = $_[0];
my $hash = $_[1];
my ($var, $val);
# Some ipcop code expects that readhash 'complete' the hash if new entries
# are presents. Not clear it !!!
#%$hash = ();
open(FILE, $filename) or die "Unable to read file $filename";
while (<FILE>)
{
chop;
@@ -251,11 +335,11 @@ sub writehash
my $filename = $_[0];
my $hash = $_[1];
my ($var, $val);
# write cgi vars to the file.
open(FILE, ">${filename}") or die "Unable to write file $filename";
flock FILE, 2;
foreach $var (keys %$hash)
foreach $var (keys %$hash)
{
if ( $var eq "__CGI__"){next;}
$val = $hash->{$var};
@@ -272,42 +356,6 @@ sub writehash
close FILE;
}
sub writehashpart
{
# This function replaces the given hash in the original hash by keeping the old
# content and just replacing the new content
my $filename = $_[0];
my $newhash = $_[1];
my %oldhash;
my ($var, $val);
readhash("${filename}", \%oldhash);
foreach $var (keys %$newhash){
$oldhash{$var}=$newhash->{$var};
}
# write cgi vars to the file.
open(FILE, ">${filename}") or die "Unable to write file $filename";
flock FILE, 2;
foreach $var (keys %oldhash)
{
if ( $var eq "__CGI__"){next;}
$val = $oldhash{$var};
# Darren Critchley Jan 17, 2003 added the following because when submitting with a graphic, the x and y
# location of the mouse are submitted as well, this was being written to the settings file causing
# some serious grief! This skips the variable.x and variable.y
if (!($var =~ /(.x|.y)$/)) {
if ($val =~ / /) {
$val = "\'$val\'"; }
if (!($var =~ /^ACTION/)) {
print FILE "${var}=${val}\n"; }
}
}
close FILE;
}
sub age {
my ($dev, $ino, $mode, $nlink, $uid, $gid, $rdev, $size,
$atime, $mtime, $ctime, $blksize, $blocks) = stat $_[0];
@@ -352,7 +400,7 @@ sub validip
if (!($ip =~ /^(\d+)\.(\d+)\.(\d+)\.(\d+)$/)) {
return 0; }
else
else
{
my @octets = ($1, $2, $3, $4);
foreach $_ (@octets)
@@ -397,7 +445,7 @@ sub subtocidr {
sub cidrtosub {
return &Network::convert_prefix2netmask(shift);
}
sub iporsubtodec
{
#Gets: Ip address or subnetmask in decimal oder CIDR
@@ -421,7 +469,7 @@ sub iporsubtodec
return $net."/".$mask;
}
}
}
}
}
#Subnet in binary format?
if ($mask=~/^(\d{1,2})$/ && (($1<=32 && $1>=0))){
@@ -433,8 +481,8 @@ sub iporsubtodec
}
return 3;
}
sub iporsubtocidr
{
#gets: Ip Address or subnetmask in decimal oder CIDR
@@ -457,7 +505,7 @@ sub iporsubtocidr
return $net."/".&General::subtocidr($mask);
}
}
}
}
}
#Subnet already in binary format?
if ($mask=~/^(\d{1,2})$/ && (($1<=32 && $1>=0))){
@@ -476,18 +524,6 @@ sub getnetworkip {
return &Network::get_netaddress($arg);
}
sub getccdbc
{
#Gets: IP in Form ("192.168.0.0/24")
#Gives: Broadcastaddress of network
my $ccdnet=$_;
my ($ccdip,$ccdsubnet) = split "/",$ccdnet;
my $ip_address_binary = inet_aton( $ccdip );
my $netmask_binary = ~pack("N", (2**(32-$ccdsubnet))-1);
my $broadcast_address = inet_ntoa( $ip_address_binary | ~$netmask_binary );
return $broadcast_address;
}
sub ip2dec {
return &Network::ip2bin(shift);
}
@@ -496,21 +532,13 @@ sub dec2ip {
return &Network::bin2ip(shift);
}
sub getnextip {
return &Network::find_next_ip_address(shift, 4);
}
sub getlastip {
return &Network::find_next_ip_address(shift, -1);
}
sub validipandmask
{
#Gets: Ip address in 192.168.0.0/24 or 192.168.0.0/255.255.255.0 and checks if subnet valid
#Gives: True bzw 0 if success or false
#Gives: True bzw 0 if success or false
my $ccdnet=$_[0];
my $subcidr;
if (!($ccdnet =~ /^(.*?)\/(.*?)$/)) {
return 0;
}
@@ -530,7 +558,7 @@ sub validipandmask
}else{
return 0;
}
}
return 0;
}
@@ -581,13 +609,13 @@ sub checksubnets
&readhasharray("${General::swroot}/ovpn/ccd.conf", \%ccdconfhash);
foreach my $key (keys %ccdconfhash) {
@ccdconf=split(/\//,$ccdconfhash{$key}[1]);
if ($ccdname eq $ccdconfhash{$key}[0])
if ($ccdname eq $ccdconfhash{$key}[0])
{
$errormessage=$errormessage.$Lang::tr{'ccd err nameexist'}."<br>";
return $errormessage;
}
my ($newip,$newsub) = split(/\//,$ccdnet);
if (&IpInSubnet($newip,$ccdconf[0],&iporsubtodec($ccdconf[1])))
if (&IpInSubnet($newip,$ccdconf[0],&iporsubtodec($ccdconf[1])))
{
$errormessage=$errormessage.$Lang::tr{'ccd err issubnet'}." $ccdconfhash{$key}[0]<br>";
return $errormessage;
@@ -623,7 +651,7 @@ sub checksubnets
return $errormessage;
}
}
#call check_net_internal
if ($checktype eq "exact")
{
@@ -636,11 +664,10 @@ sub checksubnets
sub check_net_internal_range{
my $network=shift;
my ($ip,$cidr)=split(/\//,$network);
my %ownnet=();
my %ownnet = %Network::ethernet;
my $errormessage;
$cidr=&iporsubtocidr($cidr);
#check if we use one of ipfire's networks (green,orange,blue)
&readhash("${General::swroot}/ethernet/settings", \%ownnet);
if (($ownnet{'GREEN_NETADDRESS'} ne '' && $ownnet{'GREEN_NETADDRESS'} ne '0.0.0.0') && &IpInSubnet($ip,$ownnet{'GREEN_NETADDRESS'},&iporsubtodec($ownnet{'GREEN_NETMASK'}))){ $errormessage=$Lang::tr{'ccd err green'};return $errormessage;}
if (($ownnet{'ORANGE_NETADDRESS'} ne '' && $ownnet{'ORANGE_NETADDRESS'} ne '0.0.0.0') && &IpInSubnet($ip,$ownnet{'ORANGE_NETADDRESS'},&iporsubtodec($ownnet{'ORANGE_NETMASK'}))){ $errormessage=$Lang::tr{'ccd err orange'};return $errormessage;}
if (($ownnet{'BLUE_NETADDRESS'} ne '' && $ownnet{'BLUE_NETADDRESS'} ne '0.0.0.0') && &IpInSubnet($ip,$ownnet{'BLUE_NETADDRESS'},&iporsubtodec($ownnet{'BLUE_NETMASK'}))){ $errormessage=$Lang::tr{'ccd err blue'};return $errormessage;}
@@ -650,11 +677,10 @@ sub check_net_internal_range{
sub check_net_internal_exact{
my $network=shift;
my ($ip,$cidr)=split(/\//,$network);
my %ownnet=();
my %ownnet = %Network::ethernet;
my $errormessage;
$cidr=&iporsubtocidr($cidr);
#check if we use one of ipfire's networks (green,orange,blue)
&readhash("${General::swroot}/ethernet/settings", \%ownnet);
if (($ownnet{'GREEN_NETADDRESS'} ne '' && $ownnet{'GREEN_NETADDRESS'} ne '0.0.0.0') && &Network::network_equal("$ownnet{'GREEN_NETADDRESS'}/$ownnet{'GREEN_NETMASK'}", $network)){ $errormessage=$Lang::tr{'ccd err green'};return $errormessage;}
if (($ownnet{'ORANGE_NETADDRESS'} ne '' && $ownnet{'ORANGE_NETADDRESS'} ne '0.0.0.0') && &Network::network_equal("$ownnet{'ORANGE_NETADDRESS'}/$ownnet{'ORANGE_NETMASK'}", $network)){ $errormessage=$Lang::tr{'ccd err orange'};return $errormessage;}
if (($ownnet{'BLUE_NETADDRESS'} ne '' && $ownnet{'BLUE_NETADDRESS'} ne '0.0.0.0') && &Network::network_equal("$ownnet{'BLUE_NETADDRESS'}/$ownnet{'BLUE_NETMASK'}", $network)){ $errormessage=$Lang::tr{'ccd err blue'};return $errormessage;}
@@ -781,7 +807,7 @@ sub validfqdn
# but no more than 63 characters
if (length ($parts[$index]) < 1 || length ($parts[$index]) > 63) {
return 0;}
if ($index eq 0) {
if ($index eq 0) {
# This is the hostname part
# Only valid characters are a-z, A-Z, 0-9 and -
if ($parts[$index] !~ /^[a-zA-Z0-9-]*$/) {
@@ -792,7 +818,7 @@ sub validfqdn
# Last character can only be a letter or a digit
if (substr ($parts[$index], -1, 1) !~ /^[a-zA-Z0-9]*$/) {
return 0;}
} else{
} else{
# This is the domain part
# Only valid characters are a-z, A-Z, 0-9, _ and -
if ($parts[$index] !~ /^[a-zA-Z0-9_-]*$/) {
@@ -802,23 +828,23 @@ sub validfqdn
return 1;
}
sub validportrange # used to check a port range
sub validportrange # used to check a port range
{
my $port = $_[0]; # port values
$port =~ tr/-/:/; # replace all - with colons just in case someone used -
my $srcdst = $_[1]; # is it a source or destination port
if (!($port =~ /^(\d+)\:(\d+)$/)) {
if (!(&validport($port))) {
if (!(&validport($port))) {
if ($srcdst eq 'src'){
return $Lang::tr{'source port numbers'};
} else {
return $Lang::tr{'destination port numbers'};
}
}
}
}
else
else
{
my @ports = ($1, $2);
if ($1 >= $2){
@@ -826,16 +852,16 @@ sub validportrange # used to check a port range
return $Lang::tr{'bad source range'};
} else {
return $Lang::tr{'bad destination range'};
}
}
}
foreach $_ (@ports)
{
if (!(&validport($_))) {
if ($srcdst eq 'src'){
return $Lang::tr{'source port numbers'};
return $Lang::tr{'source port numbers'};
} else {
return $Lang::tr{'destination port numbers'};
}
}
}
}
return;
@@ -850,19 +876,6 @@ sub IpInSubnet {
return &Network::ip_address_in_network($addr, "$network/$netmask");
}
#
# Return the following IP (IP+1) in dotted notation.
# Call: NextIP ('1.1.1.1');
# Return: '1.1.1.2'
#
sub NextIP {
return &Network::find_next_ip_address(shift, 1);
}
sub NextIP2 {
return &Network::find_next_ip_address(shift, 4);
}
sub ipcidr {
my ($ip,$cidr) = &Net::IPv4Addr::ipv4_parse(shift);
return "$ip\/$cidr";
@@ -948,87 +961,6 @@ sub findhasharraykey {
}
}
sub srtarray
# Darren Critchley - darrenc@telus.net - (c) 2003
# &srtarray(SortOrder, AlphaNumeric, SortDirection, ArrayToBeSorted)
# This subroutine will take the following parameters:
# ColumnNumber = the column which you want to sort on, starts at 1
# AlphaNumberic = a or n (lowercase) defines whether the sort should be alpha or numberic
# SortDirection = asc or dsc (lowercase) Ascending or Descending sort
# ArrayToBeSorted = the array that wants sorting
#
# Returns an array that is sorted to your specs
#
# If SortOrder is greater than the elements in array, then it defaults to the first element
#
{
my ($colno, $alpnum, $srtdir, @tobesorted) = @_;
my @tmparray;
my @srtedarray;
my $line;
my $newline;
my $ctr;
my $ttlitems = scalar @tobesorted; # want to know the number of rows in the passed array
if ($ttlitems < 1){ # if no items, don't waste our time lets leave
return (@tobesorted);
}
my @tmp = split(/\,/,$tobesorted[0]);
$ttlitems = scalar @tmp; # this should be the number of elements in each row of the passed in array
# Darren Critchley - validate parameters
if ($colno > $ttlitems){$colno = '1';}
$colno--; # remove one from colno to deal with arrays starting at 0
if($colno < 0){$colno = '0';}
if ($alpnum ne '') { $alpnum = lc($alpnum); } else { $alpnum = 'a'; }
if ($srtdir ne '') { $srtdir = lc($srtdir); } else { $srtdir = 'src'; }
foreach $line (@tobesorted)
{
chomp($line);
if ($line ne '') {
my @temp = split(/\,/,$line);
# Darren Critchley - juggle the fields so that the one we want to sort on is first
my $tmpholder = $temp[0];
$temp[0] = $temp[$colno];
$temp[$colno] = $tmpholder;
$newline = "";
for ($ctr=0; $ctr < $ttlitems ; $ctr++) {
$newline=$newline . $temp[$ctr] . ",";
}
chop($newline);
push(@tmparray,$newline);
}
}
if ($alpnum eq 'n') {
@tmparray = sort {$a <=> $b} @tmparray;
} else {
@tmparray = (sort @tmparray);
}
foreach $line (@tmparray)
{
chomp($line);
if ($line ne '') {
my @temp = split(/\,/,$line);
my $tmpholder = $temp[0];
$temp[0] = $temp[$colno];
$temp[$colno] = $tmpholder;
$newline = "";
for ($ctr=0; $ctr < $ttlitems ; $ctr++){
$newline=$newline . $temp[$ctr] . ",";
}
chop($newline);
push(@srtedarray,$newline);
}
}
if ($srtdir eq 'dsc') {
@tmparray = reverse(@srtedarray);
return (@tmparray);
} else {
return (@srtedarray);
}
}
sub FetchPublicIp {
my %proxysettings;
&General::readhash("${General::swroot}/proxy/settings", \%proxysettings);
@@ -1056,12 +988,12 @@ sub FetchPublicIp {
# IP
# hostname
# domain
# Output
# Output
# 1 IP matches host.domain
# 0 not in sync
#
sub DyndnsServiceSync ($;$;$) {
my ($ip,$hostName,$domain) = @_;
my @addresses;
@@ -1078,7 +1010,7 @@ sub DyndnsServiceSync ($;$;$) {
}
if ($addresses[0] ne '') { # got something ?
#&General::log("name:$addresses[0], alias:$addresses[1]");
#&General::log("name:$addresses[0], alias:$addresses[1]");
# Build clear text list of IP
@addresses = map ( &Socket::inet_ntoa($_), @addresses[4..$#addresses]);
if (grep (/$ip/, @addresses)) {
@@ -1190,11 +1122,8 @@ sub MakeUserAgent() {
sub RedIsWireless() {
# This function checks if a network device is a wireless device.
my %settings = ();
&readhash("${General::swroot}/ethernet/settings", \%settings);
# Find the name of the network device.
my $device = $settings{'RED_DEV'};
my $device = $Network::ethernet{'RED_DEV'};
# Exit, if no device is configured.
return 0 if ($device eq "");
@@ -1225,11 +1154,11 @@ sub read_file_utf8 ($) {
sub write_file_utf8 ($) {
my ($file, $content) = @_;
open my $out, '>:encoding(UTF-8)', $file or die "Could not open '$file' for writing $!";;
open my $out, '>:encoding(UTF-8)', $file or die "Could not open '$file' for writing $!";;
print $out $content;
close $out;
return;
return;
}
my $FIREWALL_RELOAD_INDICATOR = "${General::swroot}/firewall/reread";
@@ -1357,7 +1286,7 @@ sub get_nameservers () {
}
# Function to format a string containing the amount of bytes to
# something human-readable.
# something human-readable.
sub formatBytes {
# Private array which contains the units.
my @units = qw(B KB MB GB TB PB);

View File

@@ -31,10 +31,10 @@ require "${General::swroot}/lang.pl";
require "${General::swroot}/header.pl";
# Approximate size of the final graph image including canvas and labeling (in pixels, mainly used for placeholders)
our %image_size = ('width' => 900, 'height' => 300);
our %image_size = ('width' => 900, 'height' => 400);
# Size of the actual data area within the image, without labeling (in pixels)
our %canvas_size = ('width' => 800, 'height' => 190);
our %canvas_size = ('width' => 800, 'height' => 290);
# List of all available time ranges
our @time_ranges = ("hour", "day", "week", "month", "year");
@@ -111,21 +111,28 @@ sub makegraphbox {
$default_range = "day" unless ($default_range ~~ @time_ranges);
print <<END;
<div class="rrdimage" id="rrdimg-$name" data-origin="$origin" data-graph="$name" data-default-range="$default_range">
<ul>
<div class="graph" id="rrdimg-$name" data-origin="$origin" data-graph="$name" data-default-range="$default_range">
<img src="/cgi-bin/getrrdimage.cgi?origin=${origin}&graph=${name}&range=${default_range}" alt="$Lang::tr{'graph'} ($name)">
<ul>
END
# Print range select buttons
foreach my $range (@time_ranges) {
my $selected = ($range eq $default_range) ? "class=\"selected\"" : "";
print <<END;
<li><button data-range="$range" onclick="rrdimage_selectRange(this)">$Lang::tr{$range}</button></li>
<li>
<button data-range="$range" onclick="rrdimage_selectRange(this)" $selected>
$Lang::tr{$range}
</button>
</li>
END
}
print <<END;
</ul>
<img src="/cgi-bin/getrrdimage.cgi?origin=${origin}&graph=${name}&range=${default_range}" alt="$Lang::tr{'graph'} ($name)">
</div>
</ul>
</div>
END
}
@@ -143,7 +150,6 @@ sub updatecpugraph {
"-l 0",
"-u 100",
"-r",
"-t ".$Lang::tr{'cpu usage per'}." ".$Lang::tr{$period."-graph"},
"-v ".$Lang::tr{'percentage'},
"--color=SHADEA".$color{"color19"},
"--color=SHADEB".$color{"color19"},
@@ -270,7 +276,6 @@ sub updateloadgraph {
"-1".$period,
"-l 0",
"-r",
"-t ".$Lang::tr{'uptime load average'}." ".$Lang::tr{'graph per'}." ".$Lang::tr{$period."-graph"},
"-v ".$Lang::tr{'processes'},
"--color=SHADEA".$color{"color19"},
"--color=SHADEB".$color{"color19"},
@@ -303,7 +308,6 @@ sub updatememorygraph {
"-l 0",
"-u 100",
"-r",
"-t ".$Lang::tr{'memory usage per'}." ".$Lang::tr{$period."-graph"},
"-v ".$Lang::tr{'percentage'},
"--color=SHADEA".$color{"color19"},
"--color=SHADEB".$color{"color19"},
@@ -359,7 +363,6 @@ sub updateswapgraph {
"-l 0",
"-u 100",
"-r",
"-t ".$Lang::tr{'swap usage per'}." ".$Lang::tr{$period."-graph"},
"-v ".$Lang::tr{'percentage'},
"--color=SHADEA".$color{"color19"},
"--color=SHADEB".$color{"color19"},
@@ -396,99 +399,6 @@ sub updateswapgraph {
return "Error in RRD::graph for memory: ".$ERROR."\n" if $ERROR;
}
# Generate the Process Cpu Graph for the current period of time for values given by collecd
sub updateprocessescpugraph {
my @processesgraph = getprocesses();
my $period = $_[0];
my $count="0";
my @command = (
@GRAPH_ARGS,
"-",
"--start",
"-1".$period,
"-l 0",
"-r",
"-t ".$Lang::tr{'processes'}." ".$Lang::tr{'graph per'}." ".$Lang::tr{$period."-graph"},
"--color=SHADEA".$color{"color19"},
"--color=SHADEB".$color{"color19"},
"--color=BACK".$color{"color21"}
);
foreach(@processesgraph){
chomp($_);my @name=split(/\-/,$_);chop($name[1]);
push(@command,"DEF:".$name[1]."user=".$_."ps_cputime.rrd:user:AVERAGE");
push(@command,"DEF:".$name[1]."system=".$_."ps_cputime.rrd:syst:AVERAGE");
push(@command,"CDEF:".$name[1]."=".$name[1]."user,".$name[1]."system,+");
}
push(@command,"COMMENT:".$Lang::tr{'caption'}."\\j");
my $colorIndex = 0;
foreach(@processesgraph){
my $colorIndex = 10 + $count % 15;
my $color="$color{\"color$colorIndex\"}";
chomp($_);my @name=split(/\-/,$_);chop($name[1]);
if ($count eq "0"){
push(@command,"AREA:".$name[1].$color."A0:".$name[1]);
}else{
push(@command,"STACK:".$name[1].$color."A0:".$name[1]);
}
$count++;
}
RRDs::graph (@command);
$ERROR = RRDs::error;
return "Error in RRD::graph for processes: ".$ERROR."\n" if $ERROR;
}
# Generate the Process Memory Graph for the current period of time for values given by collecd
sub updateprocessesmemorygraph {
my @processesgraph = getprocesses();
my $period = $_[0];
my $count="0";
my @command = (
@GRAPH_ARGS,
"-",
"--start",
"-1".$period,
"-l 0",
"-r",
"-t ".$Lang::tr{'processes'}." ".$Lang::tr{'memory'}." ".$Lang::tr{'graph per'}." ".$Lang::tr{$period."-graph"},
"-v ".$Lang::tr{'bytes'},
"--color=SHADEA".$color{"color19"},
"--color=SHADEB".$color{"color19"},
"--color=BACK".$color{"color21"}
);
foreach(@processesgraph){
chomp($_);my @name=split(/\-/,$_);chop($name[1]);
push(@command,"DEF:".$name[1]."=".$_."ps_rss.rrd:value:AVERAGE");
}
push(@command,"COMMENT:".$Lang::tr{'caption'}."\\j");
my $colorIndex = 0;
foreach(@processesgraph){
chomp($_);my @name=split(/\-/,$_);chop($name[1]);
my $colorIndex = 10 + $count % 15;
my $color="$color{\"color$colorIndex\"}";
if ($count eq "0"){
push(@command,"AREA:".$name[1].$color."A0:".$name[1]);
}else{
push(@command,"STACK:".$name[1].$color."A0:".$name[1]);
}
$count++;
}
RRDs::graph (@command);
$ERROR = RRDs::error;
return "Error in RRD::graph for processesmemory: ".$ERROR."\n" if $ERROR;
}
# Generate the Disk Graph for the current period of time for values given by collecd
sub updatediskgraph {
@@ -500,7 +410,6 @@ sub updatediskgraph {
"--start",
"-1".$period,
"-r",
"-t ".$disk." ".$Lang::tr{'disk access'}." ".$Lang::tr{'graph per'}." ".$Lang::tr{$period."-graph"},
"-v ".$Lang::tr{'bytes per second'},
"--color=SHADEA".$color{"color19"},
"--color=SHADEB".$color{"color19"},
@@ -544,7 +453,6 @@ sub updateifgraph {
"--start",
"-1".$period,
"-r",
"-t ".$Lang::tr{'traffic on'}." ".$interface." ".$Lang::tr{'graph per'}." ".$Lang::tr{$period."-graph"},
"-v ".$Lang::tr{'bytes per second'},
"--color=SHADEA".$color{"color19"},
"--color=SHADEB".$color{"color19"},
@@ -581,7 +489,6 @@ sub updatevpngraph {
"--start",
"-1".$period,
"-r",
"-t ".$Lang::tr{'traffic on'}." ".$interface." ".$Lang::tr{'graph per'}." ".$Lang::tr{$period."-graph"},
"-v ".$Lang::tr{'bytes per second'},
"--color=SHADEA".$color{"color19"},
"--color=SHADEB".$color{"color19"},
@@ -618,7 +525,6 @@ sub updatevpnn2ngraph {
"--start",
"-1".$period,
"-r",
"-t ".$Lang::tr{'traffic on'}." ".$interface." ".$Lang::tr{'graph per'}." ".$Lang::tr{$period."-graph"},
"-v ".$Lang::tr{'bytes per second'},
"--color=SHADEA".$color{"color19"},
"--color=SHADEB".$color{"color19"},
@@ -683,7 +589,6 @@ sub updatefwhitsgraph {
"--start",
"-1".$period,
"-r",
"-t ".$Lang::tr{'firewall hits per'}." ".$Lang::tr{$period."-graph"},
"-v ".$Lang::tr{'bytes per second'},
"--color=SHADEA".$color{"color19"},
"--color=SHADEB".$color{"color19"},
@@ -762,7 +667,6 @@ sub updatefwhitsgraph {
"--start",
"-1".$period,
"-r",
"-t ".$Lang::tr{'firewall hits per'}." ".$Lang::tr{$period."-graph"},
"-v ".$Lang::tr{'bytes per second'},
"--color=SHADEA".$color{"color19"},
"--color=SHADEB".$color{"color19"},
@@ -849,7 +753,6 @@ sub updatepinggraph {
"-1".$period,
"-l 0",
"-r",
"-t ".$Lang::tr{'linkq'}." ".$host." ".$Lang::tr{'graph per'}." ".$Lang::tr{$period."-graph"},
"-v ms",
"--color=SHADEA".$color{"color19"},
"--color=SHADEB".$color{"color19"},
@@ -887,7 +790,6 @@ sub updatewirelessgraph {
"-",
"--start",
"-1".$period,
"-t Wireless ".$interface." ".$Lang::tr{'graph per'}." ".$Lang::tr{$period."-graph"},
"-v dBm",
"--color=SHADEA".$color{"color19"},
"--color=SHADEB".$color{"color19"},
@@ -925,7 +827,6 @@ sub updatehddgraph {
"--start",
"-1".$period,
"-r",
"-t ".$disk." ".$Lang::tr{'harddisk temperature'}." ".$Lang::tr{'graph per'}." ".$Lang::tr{$period."-graph"},
"-v Celsius",
"--color=SHADEA".$color{"color19"},
"--color=SHADEB".$color{"color19"},
@@ -959,7 +860,6 @@ sub updatehwtempgraph {
"--start",
"-1".$period,
"-r",
"-t ".$Lang::tr{'mbmon temp'}." ".$Lang::tr{'graph per'}." ".$Lang::tr{$period."-graph"},
"-v Celsius",
"--color=SHADEA".$color{"color19"},
"--color=SHADEB".$color{"color19"},
@@ -1007,7 +907,6 @@ sub updatehwfangraph {
"--start",
"-1".$period,
"-r",
"-t ".$Lang::tr{'mbmon fan'}." ".$Lang::tr{'graph per'}." ".$Lang::tr{$period."-graph"},
"--color=SHADEA".$color{"color19"},
"--color=SHADEB".$color{"color19"},
"--color=BACK".$color{"color21"},
@@ -1054,7 +953,6 @@ sub updatehwvoltgraph {
"--start",
"-1".$period,
"-r",
"-t ".$Lang::tr{'mbmon volt'}." ".$Lang::tr{'graph per'}." ".$Lang::tr{$period."-graph"},
"--color=SHADEA".$color{"color19"},
"--color=SHADEB".$color{"color19"},
"--color=BACK".$color{"color21"},
@@ -1121,7 +1019,6 @@ sub updateqosgraph {
"--start",
"-1".$period,
"-r",
"-t ".$Lang::tr{'Utilization on'}." (".$qossettings{'DEV'}.") ".$Lang::tr{'graph per'}." ".$Lang::tr{$period."-graph"},
"-v ".$Lang::tr{'bytes per second'},
"--color=SHADEA".$color{"color19"},
"--color=SHADEB".$color{"color19"},
@@ -1183,7 +1080,6 @@ sub updatecpufreqgraph {
"--start",
"-1".$period,
"-r",
"-t ".$Lang::tr{'cpu frequency per'}." ".$Lang::tr{$period."-graph"},
"-v MHz",
"--color=SHADEA".$color{"color19"},
"--color=SHADEB".$color{"color19"},
@@ -1223,7 +1119,6 @@ sub updatethermaltempgraph {
"--start",
"-1".$period,
"-r",
"-t ".$Lang::tr{'acpitemp'}." ".$Lang::tr{'graph per'}." ".$Lang::tr{$period."-graph"},
"-v Celsius",
"--color=SHADEA".$color{"color19"},
"--color=SHADEB".$color{"color19"},
@@ -1277,7 +1172,6 @@ sub updateconntrackgraph {
"-1" . $period,
"-r",
"--lower-limit","0",
"-t $Lang::tr{'connection tracking'}",
"-v $Lang::tr{'open connections'}",
"DEF:conntrack=$mainsettings{'RRDLOG'}/collectd/localhost/conntrack/conntrack.rrd:entropy:AVERAGE",
"LINE3:conntrack#ff0000:" . sprintf("%-15s", $Lang::tr{'open connections'}),

View File

@@ -18,6 +18,8 @@ use Socket;
use Time::Local;
use Encode;
require "${General::swroot}/graphs.pl";
our %color = ();
&General::readhash("/srv/web/ipfire/html/themes/ipfire/include/colors.txt", \%color);
@@ -38,6 +40,7 @@ $Header::colourblue = '#333399';
$Header::colourovpn = '#339999';
$Header::colourfw = '#000000';
$Header::colourvpn = '#990099';
$Header::colourwg = '#ff007f';
$Header::colourerr = '#FF0000';
$Header::viewsize = 150;
$Header::errormessage = '';
@@ -54,10 +57,10 @@ $Header::extraHead = <<END
}
.orange {
background-color: orange;
}
}
.red {
background-color: red;
}
}
.table1colour {
background-color: $Header::table1colour;
}
@@ -89,8 +92,6 @@ END
my %menuhash = ();
my $menu = \%menuhash;
%settings = ();
%ethsettings = ();
%pppsettings = ();
my @URI = split('\?', $ENV{'REQUEST_URI'});
### Make sure this is an SSL request
@@ -102,51 +103,311 @@ if ($ENV{'SERVER_ADDR'} && $ENV{'HTTPS'} ne 'on') {
### Initialize environment
&General::readhash("${swroot}/main/settings", \%settings);
&General::readhash("${swroot}/ethernet/settings", \%ethsettings);
&General::readhash("${swroot}/ppp/settings", \%pppsettings);
$hostname = $settings{'HOSTNAME'};
$hostnameintitle = 0;
### Initialize language
require "${swroot}/lang.pl";
$language = &Lang::FindWebLanguage($settings{"LANGUAGE"});
### Read English Files
if ( -d "/var/ipfire/langs/en/" ) {
opendir(DIR, "/var/ipfire/langs/en/");
@names = readdir(DIR) or die "Cannot Read Directory: $!\n";
foreach $name(@names) {
next if ($name eq ".");
next if ($name eq "..");
next if (!($name =~ /\.pl$/));
require "${swroot}/langs/en/${name}";
};
};
### Enable Language Files
if ( -d "/var/ipfire/langs/${language}/" ) {
opendir(DIR, "/var/ipfire/langs/${language}/");
@names = readdir(DIR) or die "Cannot Read Directory: $!\n";
foreach $name(@names) {
next if ($name eq ".");
next if ($name eq "..");
next if (!($name =~ /\.pl$/));
require "${swroot}/langs/${language}/${name}";
};
};
### Initialize user manual
my %manualpages = ();
&_read_manualpage_hash("${General::swroot}/main/manualpages");
### Load selected language and theme functions
require "${swroot}/langs/en.pl";
require "${swroot}/langs/${language}.pl";
eval `/bin/cat /srv/web/ipfire/html/themes/ipfire/include/functions.pl`;
###############################################################################
#
# print menu html elements for submenu entries
# @param submenu entries
sub showsubmenu() {
my $submenus = shift;
print "<ul>";
foreach my $item (sort keys %$submenus) {
$link = getlink($submenus->{$item});
next if (!is_menu_visible($link) or $link eq '');
my $subsubmenus = $submenus->{$item}->{'subMenu'};
if ($subsubmenus) {
print '<li class="has-sub ">';
} else {
print '<li>';
}
print '<a href="'.$link.'">'.$submenus->{$item}->{'caption'}.'</a>';
&showsubmenu($subsubmenus) if ($subsubmenus);
print '</li>';
}
print "</ul>"
}
###############################################################################
#
# print menu html elements
sub showmenu() {
print '<div id="cssmenu" class="bigbox fixed">';
if ($settings{'SPEED'} ne 'off') {
print <<EOF;
<div id='traffic'>
<strong>$Lang::tr{'traffic stat title'}:</strong>
$Lang::tr{'traffic stat in'} <span id='rx_kbs'>--.-- bit/s</span> &nbsp;
$Lang::tr{'traffic stat out'} <span id='tx_kbs'>--.-- bit/s</span>
</div>
EOF
}
print "<ul>";
foreach my $k1 ( sort keys %$menu ) {
$link = getlink($menu->{$k1});
next if (!is_menu_visible($link) or $link eq '');
print '<li class="has-sub "><a href="#"><span>'.$menu->{$k1}->{'caption'}.'</span></a>';
my $submenus = $menu->{$k1}->{'subMenu'};
&showsubmenu($submenus) if ($submenus);
print "</li>";
}
print "</ul></div>";
}
###############################################################################
#
# print page opening html layout
# @param page title
# @param boh
# @param extra html code for html head section
# @param suppress menu option, can be numeric 1 or nothing.
# menu will be suppressed if param is 1
sub openpage {
my $title = shift;
my $boh = shift;
my $extrahead = shift;
my $suppressMenu = shift // 0;
my $headline = "IPFire";
if (($settings{'WINDOWWITHHOSTNAME'} eq 'on') || ($settings{'WINDOWWITHHOSTNAME'} eq '')) {
$headline = "$settings{'HOSTNAME'}.$settings{'DOMAINNAME'}";
}
print <<END;
<!DOCTYPE html>
<html lang="$Lang::language">
<head>
<title>$headline - $title</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<link rel="shortcut icon" href="/favicon.ico" />
<script type="text/javascript" src="/include/jquery.js"></script>
<script src="/include/rrdimage.js"></script>
$extrahead
<script type="text/javascript">
function swapVisibility(id) {
\$('#' + id).toggle();
}
</script>
END
print "<link href=\"/themes/ipfire/include/css/style.css?v=20240806\" rel=\"stylesheet\" type=\"text/css\" />\n";
if ($settings{'SPEED'} ne 'off') {
print <<END
<script type="text/javascript" src="/themes/ipfire/include/js/refreshInetInfo.js"></script>
END
;
}
print <<END
</head>
<body>
<div id="header" class="fixed">
<div id="logo">
<h1>
<a href="https://www.ipfire.org">
IPFire_
</a>
END
;
if ($settings{'WINDOWWITHHOSTNAME'} ne 'off') {
print "&dash; $settings{'HOSTNAME'}.$settings{'DOMAINNAME'}";
}
print <<END
</h1>
</div>
</div>
END
;
unless($suppressMenu) {
&genmenu();
&showmenu();
}
print <<END
<div class="bigbox fixed">
<div id="main_inner" class="fixed">
<div id="main_header">
<h1>$title</h1>
END
;
# Print user manual link
my $manual_url = &get_manualpage_url();
if($manual_url) {
print <<END
<span><a href="$manual_url" title="$Lang::tr{'online help en'}" target="_blank"><img src="/images/help-browser.png" alt="$Lang::tr{'online help en'}"></a></span>
END
;
}
print <<END
</div>
END
;
}
###############################################################################
#
# print page closing html layout
sub closepage () {
open(FILE, "</etc/system-release");
my $system_release = <FILE>;
$system_release =~ s/core/$Lang::tr{'core update'} /;
close(FILE);
print <<END;
</div>
</div>
<div id="footer" class='bigbox fixed'>
<span class="pull-right">
<a href="https://www.ipfire.org/" target="_blank"><strong>IPFire.org</strong></a> &bull;
<a href="https://www.ipfire.org/donate" target="_blank">$Lang::tr{'support donation'}</a>
</span>
<strong>$system_release</strong>
</div>
</body>
</html>
END
;
}
###############################################################################
#
# print big box opening html layout
sub openbigbox {
}
###############################################################################
#
# print big box closing html layout
sub closebigbox {
}
# Sections
sub opensection($) {
my $title = shift;
# Open the section
print "<section class=\"section\">";
# Show the title if set
if ($title) {
print " <h2 class=\"title\">${title}</h2>\n";
}
}
sub closesection() {
print "</section>";
}
###############################################################################
#
# print box opening html layout
# @param page width
# @param page align
# @param page caption
sub openbox {
# The width parameter is ignored and should always be '100%'
my $width = shift;
my $align = shift;
my $title = shift;
my @classes = ("section", "is-box", @_);
print "<section class=\"@classes\">\n";
# Show the title
if ($title) {
print " <h2 class=\"title\">${title}</h2>\n";
}
}
###############################################################################
#
# print box closing html layout
sub closebox {
print "</section>";
}
sub errorbox($) {
my @errors = grep { $_ ne "" } @_;
# Do nothing if there are no errors
return unless (@errors);
# Open a new box
&openbox('100%', 'left', $Lang::tr{'oops something went wrong'}, "is-error");
# Print all error messages
print "<ul>\n";
foreach my $error (@errors) {
print "<li>$error</li>\n";
}
print "</ul>\n";
# Close the box again
&closebox();
}
sub warningbox($) {
my @warnings = grep { $_ ne "" } @_;
# Do nothing if there are no errors
return unless (@warnings);
# Open a new box
&openbox('100%', 'left', $Lang::tr{'warning'}, "is-warning");
# Print all warning messages
print "<ul>\n";
foreach my $warning (@warnings) {
print "<li>$warning</li>\n";
}
print "</ul>\n";
# Close the box again
&closebox();
}
sub graph($) {
my $title = shift;
# Open a new section with a title
&opensection($title);
&Graphs::makegraphbox(@_);
# Close the section
&closesection();
}
sub green_used() {
if ($ethsettings{'GREEN_DEV'} && $ethsettings{'GREEN_DEV'} ne "") {
if ($Network::ethernet{'GREEN_DEV'} && $Network::ethernet{'GREEN_DEV'} ne "") {
return 1;
}
@@ -154,21 +415,14 @@ sub green_used() {
}
sub orange_used () {
if ($ethsettings{'CONFIG_TYPE'} =~ /^[24]$/) {
if ($Network::ethernet{'CONFIG_TYPE'} =~ /^[24]$/) {
return 1;
}
return 0;
}
sub blue_used () {
if ($ethsettings{'CONFIG_TYPE'} =~ /^[34]$/) {
return 1;
}
return 0;
}
sub is_modem {
if ($ethsettings{'CONFIG_TYPE'} =~ /^[0]$/) {
if ($Network::ethernet{'CONFIG_TYPE'} =~ /^[34]$/) {
return 1;
}
return 0;
@@ -198,15 +452,13 @@ sub genmenu {
my %sublogshash = ();
my $sublogs = \%sublogshash;
if ( -e "/var/ipfire/main/gpl_accepted") {
eval `/bin/cat /var/ipfire/menu.d/*.menu`;
eval `/bin/cat /var/ipfire/menu.d/*.main`;
if (! blue_used()) {
$menu->{'05.firewall'}{'subMenu'}->{'60.wireless'}{'enabled'} = 0;
}
if ( $ethsettings{'CONFIG_TYPE'} =~ /^(1|2|3|4)$/ && $ethsettings{'RED_TYPE'} eq 'STATIC' ) {
if ( $Network::ethernet{'CONFIG_TYPE'} =~ /^(1|2|3|4)$/ && $Network::ethernet{'RED_TYPE'} eq 'STATIC' ) {
$menu->{'03.network'}{'subMenu'}->{'70.aliases'}{'enabled'} = 1;
}
@@ -214,7 +466,7 @@ sub genmenu {
$menu->{'01.system'}{'subMenu'}->{'21.wlan'}{'enabled'} = 1;
}
if ( $ethsettings{'RED_TYPE'} eq "PPPOE" && $pppsettings{'MONPORT'} ne "" ) {
if ( $Network::ethernet{'RED_TYPE'} eq "PPPOE" && $Network::ppp{'MONPORT'} ne "" ) {
$menu->{'02.status'}{'subMenu'}->{'74.modem-status'}{'enabled'} = 1;
}
@@ -230,13 +482,26 @@ sub genmenu {
$menu->{'03.network'}{'subMenu'}->{'80.macadressmenu'}{'enabled'} = 0;
$menu->{'03.network'}{'subMenu'}->{'90.wakeonlan'}{'enabled'} = 0;
}
}
}
sub showhttpheaders
{
print "Cache-control: private\n";
print "Content-type: text/html; charset=UTF-8\n\n";
sub showhttpheaders($) {
my $overwrites = shift;
my %headers = (
"Content-Type" => "text/html; charset=UTF-8",
"Cache-Control" => "private",
# Overwrite anything passed
%$overwrites,
);
# Print all headers
foreach my $header (keys %headers) {
print "$header: $headers{$header}\n";
}
# End headers
print "\n";
}
sub is_menu_visible($) {
@@ -377,17 +642,11 @@ sub cleanhtml {
sub connectionstatus
{
my %pppsettings = ();
my %netsettings = ();
my $iface='';
$pppsettings{'PROFILENAME'} = 'None';
&General::readhash("${General::swroot}/ppp/settings", \%pppsettings);
&General::readhash("${General::swroot}/ethernet/settings", \%netsettings);
my $profileused='';
unless ( $netsettings{'RED_TYPE'} =~ /^(DHCP|STATIC)$/ ) {
$profileused="- $pppsettings{'PROFILENAME'}";
unless ($Network::ethernet{'RED_TYPE'} =~ /^(DHCP|STATIC)$/) {
$profileused="- $Network::ppp{'PROFILENAME'}";
}
my ($timestr, $connstate);
@@ -398,15 +657,13 @@ sub connectionstatus
$timestr = &General::age("${General::swroot}/red/active");
$connstate = "<span>$Lang::tr{'connected'} - (<span>$timestr</span>) $profileused</span>";
} else {
if ((open(KEEPCONNECTED, "</var/ipfire/red/keepconnected") == false) && ($pppsettings{'RECONNECTION'} eq "persistent")) {
if (open(KEEPCONNECTED, "</var/ipfire/red/keepconnected") == false) {
$connstate = "<span>$Lang::tr{'connection closed'} $profileused</span>";
} elsif (($pppsettings{'RECONNECTION'} eq "dialondemand") && ( -e "${General::swroot}/red/dial-on-demand")) {
$connstate = "<span>$Lang::tr{'dod waiting'} $profileused</span>";
} else {
$connstate = "<span>$Lang::tr{'connecting'} $profileused</span>" if (system("ps -ef | grep -q '[p]ppd'"));
}
}
return $connstate;
}
@@ -500,7 +757,7 @@ END
if($hostname_print eq "") { #print blank space if no hostname is found
$hostname_print = "&nbsp;&nbsp;&nbsp;";
}
# separate active and expired leases with a horizontal line
if(($entries{$key}->{expired}) && ($divider_printed == 0)) {
$divider_printed = 1;
@@ -511,14 +768,14 @@ END
}
$id++;
}
print "<form method='post' action='/cgi-bin/dhcp.cgi'><tr>\n";
if ($id % 2) {
$col="bgcolor='$table1colour'";
} else {
$col="bgcolor='$table2colour'";
}
if($entries{$key}->{expired}) {
print <<END
<td align='center' $col><input type='hidden' name='FIX_ADDR' value='$entries{$key}->{IPADDR}' /><strike><i>$entries{$key}->{IPADDR}</i></strike></td>
@@ -599,13 +856,13 @@ sub colorize {
return "<font color='".${Header::colourovpn}."'>".$string."</font>";
} elsif ( $string =~ "lo" or $string =~ "127.0.0.0" ){
return "<font color='".${Header::colourfw}."'>".$string."</font>";
} elsif ( $string =~ $ethsettings{'GREEN_DEV'} or &General::IpInSubnet($string2,$ethsettings{'GREEN_NETADDRESS'},$ethsettings{'GREEN_NETMASK'}) ){
} elsif ( $string =~ $Network::ethernet{'GREEN_DEV'} or &General::IpInSubnet($string2,$Network::ethernet{'GREEN_NETADDRESS'},$Network::ethernet{'GREEN_NETMASK'}) ){
return "<font color='".${Header::colourgreen}."'>".$string."</font>";
} elsif ( $string =~ "ppp0" or $string =~ $ethsettings{'RED_DEV'} or $string =~ "0.0.0.0" or $string =~ $ethsettings{'RED_ADDRESS'} ){
} elsif ( $string =~ "ppp0" or $string =~ $Network::ethernet{'RED_DEV'} or $string =~ "0.0.0.0" or $string =~ $Network::ethernet{'RED_ADDRESS'} ){
return "<font color='".${Header::colourred}."'>".$string."</font>";
} elsif ( $ethsettings{'CONFIG_TYPE'}>1 and ( $string =~ $ethsettings{'BLUE_DEV'} or &General::IpInSubnet($string2,$ethsettings{'BLUE_NETADDRESS'},$ethsettings{'BLUE_NETMASK'}) )){
} elsif ( $Network::ethernet{'CONFIG_TYPE'}>1 and ( $string =~ $Network::ethernet{'BLUE_DEV'} or &General::IpInSubnet($string2,$Network::ethernet{'BLUE_NETADDRESS'},$Network::ethernet{'BLUE_NETMASK'}) )){
return "<font color='".${Header::colourblue}."'>".$string."</font>";
} elsif ( $ethsettings{'CONFIG_TYPE'}>2 and ( $string =~ $ethsettings{'ORANGE_DEV'} or &General::IpInSubnet($string2,$ethsettings{'ORANGE_NETADDRESS'},$ethsettings{'ORANGE_NETMASK'}) )){
} elsif ( $Network::ethernet{'CONFIG_TYPE'}>2 and ( $string =~ $Network::ethernet{'ORANGE_DEV'} or &General::IpInSubnet($string2,$Network::ethernet{'ORANGE_NETADDRESS'},$Network::ethernet{'ORANGE_NETMASK'}) )){
return "<font color='".${Header::colourorange}."'>".$string."</font>";
} else {
return $string;
@@ -651,4 +908,92 @@ sub _read_manualpage_hash() {
close($file);
}
sub ServiceStatus() {
my $services = shift;
my %services = %{ $services };
# Write the table header
print <<EOF;
<table class="tbl">
<!-- <thead>
<tr>
<th>
$Lang::tr{'service'}
</th>
<th>
$Lang::tr{'status'}
</th>
<th>
$Lang::tr{'memory'}
</th>
</tr>
</thead> -->
<tbody>
EOF
foreach my $service (sort keys %services) {
my %config = %{ $services{$service} };
my $pidfile = $config{"pidfile"};
my $process = $config{"process"};
# Collect all pids
my @pids = ();
# Read the PID file or go search...
if (defined $pidfile) {
@pids = &General::read_pids("${pidfile}");
} else {
@pids = &General::find_pids("${process}");
}
# Get memory consumption
my $mem = &General::get_memory_consumption(@pids);
print <<EOF;
<tr>
<th scope="row">
$service
</th>
EOF
# Running?
if (scalar @pids) {
# Format memory
$mem = &General::formatBytes($mem);
print <<EOF;
<td class="status is-running">
$Lang::tr{'running'}
</td>
<td class="text-right">
${mem}
</td>
EOF
# Not Running
} else {
print <<EOF;
<td class="status is-stopped" colspan="2">
$Lang::tr{'stopped'}
</td>
EOF
}
print <<EOF;
</tr>
EOF
}
print <<EOF;
</tbody>
</table>
EOF
}
1; # End of package "Header"

View File

@@ -152,6 +152,9 @@ my @http_ports = ('80', '81');
# Array which contains a list of rulefiles which always will be included if they exist.
my @static_included_rulefiles = ('local.rules', 'whitelist.rules');
# Log App Layer Events? (Useful for debugging only)
my $LOG_APP_LAYER_EVENTS = 0;
# Array which contains a list of allways enabled application layer protocols.
my @static_enabled_app_layer_protos = ('app-layer', 'decoder', 'files', 'stream');
@@ -1437,31 +1440,33 @@ sub write_used_rulefiles_file (@) {
}
}
print FILE "\n#Default rules for used application layer protocols.\n";
foreach my $enabled_app_layer_proto (@enabled_app_layer_protos) {
# Check if the current processed app layer proto needs to be translated
# into an application name.
if (exists($tr_app_layer_proto{$enabled_app_layer_proto})) {
# Obtain the translated application name for this protocol.
$enabled_app_layer_proto = $tr_app_layer_proto{$enabled_app_layer_proto};
}
if ($LOG_APP_LAYER_EVENTS) {
print FILE "\n#Default rules for used application layer protocols.\n";
foreach my $enabled_app_layer_proto (@enabled_app_layer_protos) {
# Check if the current processed app layer proto needs to be translated
# into an application name.
if (exists($tr_app_layer_proto{$enabled_app_layer_proto})) {
# Obtain the translated application name for this protocol.
$enabled_app_layer_proto = $tr_app_layer_proto{$enabled_app_layer_proto};
}
# Generate filename.
my $rulesfile = "$default_rulespath/$enabled_app_layer_proto\.rules";
# Generate filename.
my $rulesfile = "$default_rulespath/$enabled_app_layer_proto\.rules";
# Check if such a file exists.
if (-f "$rulesfile") {
# Write the rulesfile name to the file.
print FILE " - $rulesfile\n";
}
# Check if such a file exists.
if (-f "$rulesfile") {
# Write the rulesfile name to the file.
print FILE " - $rulesfile\n";
}
# Generate filename with "events" in filename.
$rulesfile = "$default_rulespath/$enabled_app_layer_proto\-events.rules";
# Generate filename with "events" in filename.
$rulesfile = "$default_rulespath/$enabled_app_layer_proto\-events.rules";
# Check if this file exists.
if (-f "$rulesfile" ) {
# Write the rulesfile name to the file.
print FILE " - $rulesfile\n";
# Check if this file exists.
if (-f "$rulesfile" ) {
# Write the rulesfile name to the file.
print FILE " - $rulesfile\n";
}
}
}

View File

@@ -9,7 +9,7 @@
#
package Lang;
require 'CONFIG_ROOT/general-functions.pl';
require '/var/ipfire/general-functions.pl';
use strict;
### A cache file to avoid long recalculation
@@ -25,7 +25,7 @@ $Lang::CacheLang = '/var/ipfire/langs/cache-lang.pl';
# The file content has to start with (of course without the leading #):
# --------- CODE ---------
#%tr = (%tr,
# 'key1' => 'value', # add all your entries key/values here
# 'key1' => 'value', # add all your entries key/values here
# 'key2' => 'value' # and end with (of course without the leading #):
#);
# --------- CODE END---------
@@ -37,13 +37,14 @@ $Lang::CacheLang = '/var/ipfire/langs/cache-lang.pl';
### Initialize language
%Lang::tr = ();
my %settings = ();
&General::readhash("${General::swroot}/main/settings", \%settings);
# Load the selected language
reload($settings{'LANGUAGE'});
# language variable used by makegraphs script
our $language;
$language = $settings{'LANGUAGE'};
our $language = $settings{'LANGUAGE'};
#
# Load requested language file from cachefile. If cachefile doesn't exist, build on the fly.
@@ -54,35 +55,32 @@ sub reload {
%Lang::tr = (); # start with a clean array
# Use CacheLang if present & not empty.
if (-s "$Lang::CacheLang.$LG" ) {
##fix: need to put a lock_shared on it in case rebuild is active ?
do "$Lang::CacheLang.$LG";
#&General::log ("cachelang file used [$LG]");
return;
}
#&General::log("Building on the fly cachelang file for [$LG]");
do "${General::swroot}/langs/en.pl";
do "${General::swroot}/langs/$LG.pl" if ($LG ne 'en');
# Use CacheLang if present & not empty.
if (-s "$Lang::CacheLang.$LG" ) {
do "$Lang::CacheLang.$LG";
return;
}
my $AddonDir = ${General::swroot}.'/addon-lang';
do "${General::swroot}/langs/en.pl";
do "${General::swroot}/langs/$LG.pl" if ($LG ne 'en');
opendir (DIR, $AddonDir);
my @files = readdir (DIR);
closedir (DIR);
my $AddonDir = ${General::swroot}.'/addon-lang';
opendir (DIR, $AddonDir);
my @files = readdir (DIR);
closedir (DIR);
# default is to load english first
foreach my $file ( grep (/.*\.en.pl$/,@files)) {
do "$AddonDir/$file";
}
# read again, overwriting 'en' with choosed lang
if ($LG ne 'en') {
foreach my $file (grep (/.*\.$LG\.pl$/,@files) ) {
do "$AddonDir/$file";
foreach my $file ( grep (/.*\.en.pl$/,@files)) {
do "$AddonDir/$file";
}
# read again, overwriting 'en' with choosed lang
if ($LG ne 'en') {
foreach my $file (grep (/.*\.$LG\.pl$/,@files)) {
do "$AddonDir/$file";
}
}
}
}
#
@@ -93,7 +91,7 @@ sub reload {
sub BuildUniqueCacheLang {
my ($LG) = @_;
# Make CacheLang empty so that it won't be used by Lang::reload
open (FILE, ">$Lang::CacheLang.$LG") or return 1;
flock (FILE, 2) or return 1;
@@ -101,7 +99,7 @@ sub BuildUniqueCacheLang {
# Load languages files
&Lang::reload ($LG);
# Write the unique %tr=('key'=>'value') array
open (FILE, ">$Lang::CacheLang.$LG") or return 1;
flock (FILE, 2) or return 1;
@@ -112,7 +110,7 @@ sub BuildUniqueCacheLang {
}
print FILE ');';
close (FILE);
# Make nobody:nobody file's owner
# Will work when called by root/rc.sysinit
chown (0,0,"$Lang::CacheLang.$LG");
@@ -126,7 +124,7 @@ sub BuildUniqueCacheLang {
sub BuildCacheLang {
my $AddonDir = ${General::swroot}.'/addon-lang';
# Correct permission in case addon-installer did not do it
opendir (DIR, $AddonDir);
my @files = readdir (DIR);
@@ -140,7 +138,7 @@ sub BuildCacheLang {
my $selected = '';;
my $missed = '';
my $error = 0;
open (LANGS, "${General::swroot}/langs/list");
while (<LANGS>) {
($selected) = split (':');
@@ -153,7 +151,7 @@ sub BuildCacheLang {
if ($missed) { # collision with current cache lang being used ?
$error = &BuildUniqueCacheLang ($missed);
}
&General::log ("WARNING: cannot build cachelang file for [$missed].") if ($error);
return $error;
}

View File

@@ -28,9 +28,12 @@ require "/var/ipfire/general-functions.pl";
use experimental 'smartmatch';
use Socket;
# System ethernet configuration
our %ethernet_settings = ();
&General::readhash("${General::swroot}/ethernet/settings", \%ethernet_settings);
our %ethernet = ();
our %ppp = ();
# Read configuration files
&General::readhash("${General::swroot}/ethernet/settings", \%ethernet);
&General::readhash("${General::swroot}/ppp/settings", \%ppp);
# List of all possible network zones that can be configured
our @known_network_zones = ("red", "green", "orange", "blue");
@@ -291,6 +294,43 @@ sub get_broadcast($) {
return &bin2ip($network_bin ^ ~$netmask_bin);
}
sub get_prefix($) {
my $network = shift;
# Convert to binary
my ($network_bin, $netmask_bin) = &network2bin($network);
if (defined $netmask_bin) {
my $prefix = 0;
while (1) {
# End the loop if we have consumed all ones
last if ($netmask_bin == 0);
# Increment prefix
$prefix++;
# Remove the most-significant one
$netmask_bin <<= 1;
$netmask_bin &= 0xffffffff;
}
return $prefix;
}
return undef;
}
sub get_netmask($) {
my $network = shift;
# Fetch the prefix
my $prefix = &get_prefix($network);
# Convert to netmask
return &convert_prefix2netmask($prefix);
}
# Returns True if $address is in $network.
sub ip_address_in_network($$) {
my $address = shift;
@@ -556,7 +596,7 @@ sub get_intf_by_address($) {
#
sub get_available_network_zones () {
# Obtain the configuration type from the netsettings hash.
my $config_type = $ethernet_settings{'CONFIG_TYPE'};
my $config_type = $ethernet{'CONFIG_TYPE'};
# Hash which contains the conversation from the config mode
# to the existing network interface names. They are stored like
@@ -588,10 +628,10 @@ sub get_available_network_zones () {
#
sub is_zone_available() {
my $zone = lc shift;
# Make sure the zone is valid
die("Unknown network zone '$zone'") unless ($zone ~~ @known_network_zones);
# Get available zones and return result
my @available_zones = get_available_network_zones();
return ($zone ~~ @available_zones);
@@ -602,8 +642,8 @@ sub is_zone_available() {
#
sub is_red_mode_ip() {
# Obtain the settings from the netsettings hash
my $config_type = $ethernet_settings{'CONFIG_TYPE'};
my $red_type = $ethernet_settings{'RED_TYPE'};
my $config_type = $ethernet{'CONFIG_TYPE'};
my $red_type = $ethernet{'RED_TYPE'};
# RED must be a network device (configuration 1-4) with dynamic or static IP
return (($config_type ~~ [1..4]) && ($red_type ~~ ["DHCP", "STATIC"]));
@@ -664,7 +704,7 @@ sub testsuite() {
assert('find_next_ip_address("1.2.3.4", 2)', $result eq "1.2.3.6");
$result = &network_equal("192.168.0.0/24", "192.168.0.0/255.255.255.0");
assert('network_equal("192.168.0.0/24", "192.168.0.0/255.255.255.0")', $result);
assert('network_equal("192.168.0.0/24", "192.168.0.0/255.255.255.0")', !$result);
$result = &network_equal("192.168.0.0/24", "192.168.0.0/25");
assert('network_equal("192.168.0.0/24", "192.168.0.0/25")', !$result);
@@ -690,6 +730,13 @@ sub testsuite() {
$result = &ip_address_in_range("192.168.30.21", "192.168.30.10", "192.168.30.20");
assert('ip_address_in_range("192.168.30.21", "192.168.30.10", "192.168.30.20")', !$result);
# Check &get_prefix()
$result = &get_prefix("192.168.0.0/24");
assert('get_prefix("192.168.0.0/24")', $result != 24);
$result = &get_prefix("192.168.0.0/255.255.0.0");
assert('get_prefix("192.168.0.0/255.255.0.0")', $result != 16);
print "Testsuite completed successfully!\n";
return 0;

View File

@@ -22,7 +22,6 @@ LoadPlugin load
#LoadPlugin logfile
LoadPlugin memory
LoadPlugin ping
LoadPlugin processes
LoadPlugin rrdtool
LoadPlugin sensors
LoadPlugin swap
@@ -66,18 +65,6 @@ include "/etc/collectd.precache"
timeout 10
</Plugin>
<Plugin processes>
Process "sshd"
Process "smbd"
Process "nmbd"
Process "squid"
Process "squidguard"
Process "charon"
Process "openvpn"
Process "qemu"
Process "mpd"
</Plugin>
<Plugin rrdtool>
DataDir "/var/log/rrd/collectd"
</Plugin>

View File

@@ -1,10 +1,10 @@
#
# Automatically generated file; DO NOT EDIT.
# Linux/arm64 6.6.31-ipfire Kernel Configuration
# Linux/arm64 6.6.45-ipfire Kernel Configuration
#
CONFIG_CC_VERSION_TEXT="gcc (GCC) 13.2.0"
CONFIG_CC_VERSION_TEXT="gcc (GCC) 13.3.0"
CONFIG_CC_IS_GCC=y
CONFIG_GCC_VERSION=130200
CONFIG_GCC_VERSION=130300
CONFIG_CLANG_VERSION=0
CONFIG_AS_IS_GNU=y
CONFIG_AS_VERSION=24200
@@ -15,7 +15,6 @@ CONFIG_CC_CAN_LINK=y
CONFIG_CC_CAN_LINK_STATIC=y
CONFIG_CC_HAS_ASM_GOTO_OUTPUT=y
CONFIG_CC_HAS_ASM_GOTO_TIED_OUTPUT=y
CONFIG_GCC_ASM_GOTO_OUTPUT_WORKAROUND=y
CONFIG_CC_HAS_ASM_INLINE=y
CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y
CONFIG_PAHOLE_VERSION=0
@@ -961,6 +960,7 @@ CONFIG_COMPACT_UNEVICTABLE_DEFAULT=1
CONFIG_PAGE_REPORTING=y
CONFIG_MIGRATION=y
CONFIG_CONTIG_ALLOC=y
CONFIG_PCP_BATCH_SCALE_MAX=5
CONFIG_PHYS_ADDR_T_64BIT=y
CONFIG_MMU_NOTIFIER=y
CONFIG_KSM=y
@@ -5545,6 +5545,7 @@ CONFIG_DVB_SP2=m
# Graphics support
#
CONFIG_APERTURE_HELPERS=y
CONFIG_SCREEN_INFO=y
CONFIG_VIDEO_CMDLINE=y
CONFIG_VIDEO_NOMODESET=y
# CONFIG_AUXDISPLAY is not set
@@ -5832,6 +5833,7 @@ CONFIG_FB_SYS_IMAGEBLIT=y
CONFIG_FB_SYS_FOPS=y
CONFIG_FB_DEFERRED_IO=y
CONFIG_FB_DMAMEM_HELPERS=y
CONFIG_FB_IOMEM_FOPS=y
CONFIG_FB_IOMEM_HELPERS=y
CONFIG_FB_SYSMEM_HELPERS=y
CONFIG_FB_SYSMEM_HELPERS_DEFERRED=y
@@ -7535,6 +7537,7 @@ CONFIG_EXTCON=y
# CONFIG_EXTCON_USB_GPIO is not set
CONFIG_MEMORY=y
# CONFIG_ARM_PL172_MPMC is not set
CONFIG_FSL_IFC=y
# CONFIG_IIO is not set
# CONFIG_NTB is not set
CONFIG_PWM=y
@@ -8127,6 +8130,7 @@ CONFIG_CRYPTO_ALGAPI=y
CONFIG_CRYPTO_ALGAPI2=y
CONFIG_CRYPTO_AEAD=y
CONFIG_CRYPTO_AEAD2=y
CONFIG_CRYPTO_SIG=y
CONFIG_CRYPTO_SIG2=y
CONFIG_CRYPTO_SKCIPHER=y
CONFIG_CRYPTO_SKCIPHER2=y
@@ -8550,7 +8554,6 @@ CONFIG_CMA_SIZE_SEL_MBYTES=y
CONFIG_CMA_ALIGNMENT=8
# CONFIG_DMA_API_DEBUG is not set
CONFIG_SGL_ALLOC=y
# CONFIG_FORCE_NR_CPUS is not set
CONFIG_CPU_RMAP=y
CONFIG_DQL=y
CONFIG_GLOB=y

View File

@@ -1,10 +1,10 @@
#
# Automatically generated file; DO NOT EDIT.
# Linux/riscv 6.6.25-ipfire Kernel Configuration
# Linux/riscv 6.6.46-ipfire Kernel Configuration
#
CONFIG_CC_VERSION_TEXT="gcc (GCC) 13.2.0"
CONFIG_CC_VERSION_TEXT="gcc (GCC) 13.3.0"
CONFIG_CC_IS_GCC=y
CONFIG_GCC_VERSION=130200
CONFIG_GCC_VERSION=130300
CONFIG_CLANG_VERSION=0
CONFIG_AS_IS_GNU=y
CONFIG_AS_VERSION=24200
@@ -15,7 +15,6 @@ CONFIG_CC_CAN_LINK=y
CONFIG_CC_CAN_LINK_STATIC=y
CONFIG_CC_HAS_ASM_GOTO_OUTPUT=y
CONFIG_CC_HAS_ASM_GOTO_TIED_OUTPUT=y
CONFIG_GCC_ASM_GOTO_OUTPUT_WORKAROUND=y
CONFIG_CC_HAS_ASM_INLINE=y
CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y
CONFIG_PAHOLE_VERSION=0
@@ -497,6 +496,7 @@ CONFIG_ACPI_WATCHDOG=y
# CONFIG_ACPI_PFRUT is not set
# CONFIG_ACPI_FFH is not set
# CONFIG_PMIC_OPREGION is not set
CONFIG_CPU_MITIGATIONS=y
#
# General architecture-dependent options
@@ -761,6 +761,7 @@ CONFIG_COMPACT_UNEVICTABLE_DEFAULT=1
CONFIG_PAGE_REPORTING=y
CONFIG_MIGRATION=y
CONFIG_ARCH_ENABLE_THP_MIGRATION=y
CONFIG_PCP_BATCH_SCALE_MAX=5
CONFIG_PHYS_ADDR_T_64BIT=y
CONFIG_MMU_NOTIFIER=y
CONFIG_KSM=y
@@ -4930,6 +4931,7 @@ CONFIG_DVB_SP2=m
# Graphics support
#
CONFIG_APERTURE_HELPERS=y
CONFIG_SCREEN_INFO=y
CONFIG_VIDEO_CMDLINE=y
CONFIG_VIDEO_NOMODESET=y
# CONFIG_AUXDISPLAY is not set
@@ -5157,6 +5159,7 @@ CONFIG_FB_SYS_IMAGEBLIT=y
# CONFIG_FB_FOREIGN_ENDIAN is not set
CONFIG_FB_SYS_FOPS=y
CONFIG_FB_DEFERRED_IO=y
CONFIG_FB_IOMEM_FOPS=y
CONFIG_FB_IOMEM_HELPERS=y
CONFIG_FB_SYSMEM_HELPERS=y
CONFIG_FB_SYSMEM_HELPERS_DEFERRED=y
@@ -6805,6 +6808,7 @@ CONFIG_CRYPTO_ALGAPI=y
CONFIG_CRYPTO_ALGAPI2=y
CONFIG_CRYPTO_AEAD=y
CONFIG_CRYPTO_AEAD2=y
CONFIG_CRYPTO_SIG=y
CONFIG_CRYPTO_SIG2=y
CONFIG_CRYPTO_SKCIPHER=y
CONFIG_CRYPTO_SKCIPHER2=y
@@ -7131,7 +7135,6 @@ CONFIG_DMA_DIRECT_REMAP=y
# CONFIG_DMA_API_DEBUG is not set
CONFIG_SGL_ALLOC=y
CONFIG_CHECK_SIGNATURE=y
# CONFIG_FORCE_NR_CPUS is not set
CONFIG_CPU_RMAP=y
CONFIG_DQL=y
CONFIG_GLOB=y

View File

@@ -1,10 +1,10 @@
#
# Automatically generated file; DO NOT EDIT.
# Linux/x86 6.6.32-ipfire Kernel Configuration
# Linux/x86 6.6.47-ipfire Kernel Configuration
#
CONFIG_CC_VERSION_TEXT="gcc (GCC) 13.2.0"
CONFIG_CC_VERSION_TEXT="gcc (GCC) 13.3.0"
CONFIG_CC_IS_GCC=y
CONFIG_GCC_VERSION=130200
CONFIG_GCC_VERSION=130300
CONFIG_CLANG_VERSION=0
CONFIG_AS_IS_GNU=y
CONFIG_AS_VERSION=24200
@@ -15,7 +15,6 @@ CONFIG_CC_CAN_LINK=y
CONFIG_CC_CAN_LINK_STATIC=y
CONFIG_CC_HAS_ASM_GOTO_OUTPUT=y
CONFIG_CC_HAS_ASM_GOTO_TIED_OUTPUT=y
CONFIG_GCC_ASM_GOTO_OUTPUT_WORKAROUND=y
CONFIG_TOOLS_SUPPORT_RELR=y
CONFIG_CC_HAS_ASM_INLINE=y
CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y
@@ -1018,6 +1017,7 @@ CONFIG_PAGE_REPORTING=y
CONFIG_MIGRATION=y
CONFIG_ARCH_ENABLE_THP_MIGRATION=y
CONFIG_CONTIG_ALLOC=y
CONFIG_PCP_BATCH_SCALE_MAX=5
CONFIG_PHYS_ADDR_T_64BIT=y
CONFIG_MMU_NOTIFIER=y
CONFIG_KSM=y
@@ -5244,6 +5244,7 @@ CONFIG_DVB_SP2=m
# Graphics support
#
CONFIG_APERTURE_HELPERS=y
CONFIG_SCREEN_INFO=y
CONFIG_VIDEO_CMDLINE=y
CONFIG_VIDEO_NOMODESET=y
# CONFIG_AUXDISPLAY is not set
@@ -5491,6 +5492,7 @@ CONFIG_FB_SYS_IMAGEBLIT=y
# CONFIG_FB_FOREIGN_ENDIAN is not set
CONFIG_FB_SYS_FOPS=y
CONFIG_FB_DEFERRED_IO=y
CONFIG_FB_IOMEM_FOPS=y
CONFIG_FB_IOMEM_HELPERS=y
CONFIG_FB_SYSMEM_HELPERS=y
CONFIG_FB_SYSMEM_HELPERS_DEFERRED=y
@@ -7313,6 +7315,7 @@ CONFIG_CRYPTO_ALGAPI=y
CONFIG_CRYPTO_ALGAPI2=y
CONFIG_CRYPTO_AEAD=y
CONFIG_CRYPTO_AEAD2=y
CONFIG_CRYPTO_SIG=y
CONFIG_CRYPTO_SIG2=y
CONFIG_CRYPTO_SKCIPHER=y
CONFIG_CRYPTO_SKCIPHER2=y
@@ -7689,7 +7692,6 @@ CONFIG_SWIOTLB=y
# CONFIG_DMA_API_DEBUG is not set
CONFIG_SGL_ALLOC=y
CONFIG_CHECK_SIGNATURE=y
# CONFIG_FORCE_NR_CPUS is not set
CONFIG_CPU_RMAP=y
CONFIG_DQL=y
CONFIG_GLOB=y

View File

@@ -1,5 +1,5 @@
$subipfire->{'54.wlanap'} = {'caption' => WLanAP,
$subipfire->{'54.wlanap'} = {'caption' => $Lang::tr{'wlanap'},
'uri' => '/cgi-bin/wlanap.cgi',
'title' => WLanAP,
'title' => $Lang::tr{'wlanap'},
'enabled' => 1,
};

File diff suppressed because it is too large Load Diff

View File

@@ -1,2 +1,2 @@
boot/uInit-KVER-ipfire
boot/initramfs-KVER-ipfire.img
boot/uInit-KVER
boot/initramfs-KVER.img

View File

@@ -132,8 +132,6 @@ usr/local/bin/update-location-database
usr/sbin/openvpn-metrics
#usr/share
#usr/share/doc
#usr/share/doc/licenses
usr/share/doc/licenses/GPLv3
#usr/share/info
#usr/share/locale
#usr/share/man

View File

@@ -1 +0,0 @@
usr/bin/br2684ctl

View File

@@ -26,8 +26,10 @@ usr/bin/mkfs.btrfs
#usr/lib/libbtrfs.so
usr/lib/libbtrfs.so.0
usr/lib/libbtrfs.so.0.1
usr/lib/libbtrfs.so.0.1.3
#usr/lib/libbtrfsutil.a
#usr/lib/libbtrfsutil.so
usr/lib/libbtrfsutil.so.1
usr/lib/libbtrfsutil.so.1.2.0
usr/lib/libbtrfsutil.so.1.3
usr/lib/libbtrfsutil.so.1.3.2
#usr/lib/pkgconfig/libbtrfsutil.pc

View File

@@ -177,6 +177,9 @@ usr/sbin/chroot
#usr/share/locale/ja/LC_MESSAGES/coreutils.mo
#usr/share/locale/ja/LC_TIME
#usr/share/locale/ja/LC_TIME/coreutils.mo
#usr/share/locale/ka/LC_MESSAGES/coreutils.mo
#usr/share/locale/ka/LC_TIME
#usr/share/locale/ka/LC_TIME/coreutils.mo
#usr/share/locale/kk
#usr/share/locale/kk/LC_MESSAGES
#usr/share/locale/kk/LC_MESSAGES/coreutils.mo
@@ -229,6 +232,11 @@ usr/sbin/chroot
#usr/share/locale/sv/LC_MESSAGES/coreutils.mo
#usr/share/locale/sv/LC_TIME
#usr/share/locale/sv/LC_TIME/coreutils.mo
#usr/share/locale/ta
#usr/share/locale/ta/LC_MESSAGES
#usr/share/locale/ta/LC_MESSAGES/coreutils.mo
#usr/share/locale/ta/LC_TIME
#usr/share/locale/ta/LC_TIME/coreutils.mo
#usr/share/locale/tr/LC_MESSAGES/coreutils.mo
#usr/share/locale/tr/LC_TIME
#usr/share/locale/tr/LC_TIME/coreutils.mo
@@ -252,13 +260,20 @@ usr/sbin/chroot
#usr/share/man/man1/basenc.1
#usr/share/man/man1/cat.1
#usr/share/man/man1/chcon.1
#usr/share/man/man1/chgrp.1
#usr/share/man/man1/chmod.1
#usr/share/man/man1/chown.1
#usr/share/man/man1/chroot.1
#usr/share/man/man1/cksum.1
#usr/share/man/man1/comm.1
#usr/share/man/man1/cp.1
#usr/share/man/man1/csplit.1
#usr/share/man/man1/cut.1
#usr/share/man/man1/date.1
#usr/share/man/man1/dd.1
#usr/share/man/man1/df.1
#usr/share/man/man1/dir.1
#usr/share/man/man1/dircolors.1
#usr/share/man/man1/dirname.1
#usr/share/man/man1/du.1
#usr/share/man/man1/echo.1
@@ -273,13 +288,18 @@ usr/sbin/chroot
#usr/share/man/man1/head.1
#usr/share/man/man1/hostid.1
#usr/share/man/man1/id.1
#usr/share/man/man1/install.1
#usr/share/man/man1/join.1
#usr/share/man/man1/link.1
#usr/share/man/man1/ln.1
#usr/share/man/man1/logname.1
#usr/share/man/man1/ls.1
#usr/share/man/man1/md5sum.1
#usr/share/man/man1/mkdir.1
#usr/share/man/man1/mkfifo.1
#usr/share/man/man1/mknod.1
#usr/share/man/man1/mktemp.1
#usr/share/man/man1/mv.1
#usr/share/man/man1/nice.1
#usr/share/man/man1/nl.1
#usr/share/man/man1/nohup.1
@@ -296,6 +316,7 @@ usr/sbin/chroot
#usr/share/man/man1/pwd.1
#usr/share/man/man1/readlink.1
#usr/share/man/man1/realpath.1
#usr/share/man/man1/rm.1
#usr/share/man/man1/rmdir.1
#usr/share/man/man1/runcon.1
#usr/share/man/man1/seq.1
@@ -331,6 +352,7 @@ usr/sbin/chroot
#usr/share/man/man1/unlink.1
#usr/share/man/man1/uptime.1
#usr/share/man/man1/users.1
#usr/share/man/man1/vdir.1
#usr/share/man/man1/wc.1
#usr/share/man/man1/who.1
#usr/share/man/man1/whoami.1

View File

@@ -19,6 +19,7 @@ usr/lib/libcurl.so.4
usr/lib/libcurl.so.4.8.0
#usr/lib/pkgconfig/libcurl.pc
#usr/share/aclocal/libcurl.m4
#usr/share/man/man1/curl-config.1
#usr/share/man/man1/curl.1
#usr/share/man/man3/CURLINFO_ACTIVESOCKET.3
#usr/share/man/man3/CURLINFO_APPCONNECT_TIME.3
@@ -378,6 +379,7 @@ usr/lib/libcurl.so.4.8.0
#usr/share/man/man3/CURLOPT_SUPPRESS_CONNECT_HEADERS.3
#usr/share/man/man3/CURLOPT_TCP_FASTOPEN.3
#usr/share/man/man3/CURLOPT_TCP_KEEPALIVE.3
#usr/share/man/man3/CURLOPT_TCP_KEEPCNT.3
#usr/share/man/man3/CURLOPT_TCP_KEEPIDLE.3
#usr/share/man/man3/CURLOPT_TCP_KEEPINTVL.3
#usr/share/man/man3/CURLOPT_TCP_NODELAY.3

View File

@@ -90,4 +90,5 @@ usr/sbin/testsaslauthd
#usr/share/man/man8/saslauthd.8
#usr/share/man/man8/sasldblistusers2.8
#usr/share/man/man8/saslpasswd2.8
#usr/share/man/man8/testsaslauthd.8
var/lib/sasl

View File

@@ -1,9 +1,11 @@
usr/sbin/dump.exfat
usr/sbin/exfat2img
usr/sbin/exfatlabel
usr/sbin/fsck.exfat
usr/sbin/mkfs.exfat
usr/sbin/tune.exfat
#usr/share/man/man8/dump.exfat.8
#usr/share/man/man8/exfat2img.8
#usr/share/man/man8/exfatlabel.8
#usr/share/man/man8/fsck.exfat.8
#usr/share/man/man8/mkfs.exfat.8

View File

@@ -33,25 +33,20 @@ usr/bin/gettext.sh
#usr/lib/gettext/project-id
#usr/lib/gettext/urlget
#usr/lib/gettext/user-email
#usr/lib/libasprintf.a
#usr/lib/libasprintf.la
#usr/lib/libasprintf.so
usr/lib/libasprintf.so.0
usr/lib/libasprintf.so.0.0.0
usr/lib/libgettextlib-0.22.4.so
usr/lib/libgettextlib.a
usr/lib/libgettextlib-0.22.5.so
#usr/lib/libgettextlib.la
#usr/lib/libgettextlib.so
#usr/lib/libgettextpo.a
#usr/lib/libgettextpo.la
#usr/lib/libgettextpo.so
usr/lib/libgettextpo.so.0
usr/lib/libgettextpo.so.0.5.10
usr/lib/libgettextsrc-0.22.4.so
#usr/lib/libgettextsrc.a
usr/lib/libgettextsrc-0.22.5.so
#usr/lib/libgettextsrc.la
usr/lib/libgettextsrc.so
#usr/lib/libtextstyle.a
#usr/lib/libtextstyle.la
#usr/lib/libtextstyle.so
usr/lib/libtextstyle.so.0
@@ -1986,16 +1981,16 @@ usr/lib/preloadable_libintl.so
#usr/share/doc/libtextstyle/libtextstyle_abt.html
#usr/share/doc/libtextstyle/libtextstyle_toc.html
#usr/share/gettext
#usr/share/gettext-0.22.4
#usr/share/gettext-0.22.4/its
#usr/share/gettext-0.22.4/its/glade.loc
#usr/share/gettext-0.22.4/its/glade1.its
#usr/share/gettext-0.22.4/its/glade2.its
#usr/share/gettext-0.22.4/its/gsettings.its
#usr/share/gettext-0.22.4/its/gsettings.loc
#usr/share/gettext-0.22.4/its/gtkbuilder.its
#usr/share/gettext-0.22.4/its/metainfo.its
#usr/share/gettext-0.22.4/its/metainfo.loc
#usr/share/gettext-0.22.5
#usr/share/gettext-0.22.5/its
#usr/share/gettext-0.22.5/its/glade.loc
#usr/share/gettext-0.22.5/its/glade1.its
#usr/share/gettext-0.22.5/its/glade2.its
#usr/share/gettext-0.22.5/its/gsettings.its
#usr/share/gettext-0.22.5/its/gsettings.loc
#usr/share/gettext-0.22.5/its/gtkbuilder.its
#usr/share/gettext-0.22.5/its/metainfo.its
#usr/share/gettext-0.22.5/its/metainfo.loc
#usr/share/gettext/ABOUT-NLS
#usr/share/gettext/archive.dir.tar.xz
#usr/share/gettext/config.rpath

View File

@@ -7,7 +7,7 @@
#usr/lib/libarchive.la
#usr/lib/libarchive.so
usr/lib/libarchive.so.13
usr/lib/libarchive.so.13.7.0
usr/lib/libarchive.so.13.7.4
#usr/lib/pkgconfig/libarchive.pc
#usr/share/man/man1/bsdcat.1
#usr/share/man/man1/bsdcpio.1

View File

@@ -4,12 +4,12 @@ sbin/getpcaps
sbin/setcap
#usr/include/sys/capability.h
#usr/include/sys/psx_syscall.h
usr/lib/libcap.so
#usr/lib/libcap.so
usr/lib/libcap.so.2
usr/lib/libcap.so.2.69
usr/lib/libcap.so.2.70
#usr/lib/libpsx.so
#usr/lib/libpsx.so.2
usr/lib/libpsx.so.2.69
usr/lib/libpsx.so.2.70
#usr/lib/pkgconfig/libcap.pc
#usr/lib/pkgconfig/libpsx.pc
#usr/lib/security
@@ -88,7 +88,9 @@ usr/lib/security/pam_cap.so
#usr/share/man/man3/psx_syscall.3
#usr/share/man/man3/psx_syscall3.3
#usr/share/man/man3/psx_syscall6.3
#usr/share/man/man5/capability.conf.5
#usr/share/man/man8/captree.8
#usr/share/man/man8/getcap.8
#usr/share/man/man8/getpcaps.8
#usr/share/man/man8/pam_cap.8
#usr/share/man/man8/setcap.8

View File

@@ -1,12 +1,11 @@
#usr/bin/dumpsexp
#usr/bin/hmac256
#usr/bin/libgcrypt-config
#usr/bin/mpicalc
#usr/include/gcrypt.h
#usr/lib/libgcrypt.la
#usr/lib/libgcrypt.so
usr/lib/libgcrypt.so.20
usr/lib/libgcrypt.so.20.4.3
usr/lib/libgcrypt.so.20.5.0
#usr/lib/pkgconfig/libgcrypt.pc
#usr/share/aclocal/libgcrypt.m4
#usr/share/info/gcrypt.info

View File

@@ -6,7 +6,7 @@ usr/bin/gpg-error
#usr/lib/libgpg-error.la
#usr/lib/libgpg-error.so
usr/lib/libgpg-error.so.0
usr/lib/libgpg-error.so.0.35.0
usr/lib/libgpg-error.so.0.37.0
#usr/lib/pkgconfig/gpg-error.pc
#usr/share/aclocal/gpg-error.m4
#usr/share/aclocal/gpgrt.m4

View File

@@ -16,17 +16,17 @@
#usr/lib/cmake/libjpeg-turbo/libjpeg-turboTargets.cmake
#usr/lib/libjpeg.so
usr/lib/libjpeg.so.8
usr/lib/libjpeg.so.8.2.2
usr/lib/libjpeg.so.8.3.2
#usr/lib/libturbojpeg.so
usr/lib/libturbojpeg.so.0
usr/lib/libturbojpeg.so.0.2.0
usr/lib/libturbojpeg.so.0.3.0
#usr/lib/pkgconfig/libjpeg.pc
#usr/lib/pkgconfig/libturbojpeg.pc
#usr/share/doc/libjpeg-turbo
#usr/share/doc/libjpeg-turbo/LICENSE.md
#usr/share/doc/libjpeg-turbo/README.ijg
#usr/share/doc/libjpeg-turbo/README.md
#usr/share/doc/libjpeg-turbo/example.txt
#usr/share/doc/libjpeg-turbo/example.c
#usr/share/doc/libjpeg-turbo/libjpeg.txt
#usr/share/doc/libjpeg-turbo/structure.txt
#usr/share/doc/libjpeg-turbo/tjexample.c

View File

@@ -9,9 +9,11 @@
#usr/include/libnet/libnet-types.h
#usr/lib/libnet.a
#usr/lib/libnet.la
usr/lib/libnet.so
usr/lib/libnet.so.1
usr/lib/libnet.so.1.7.0
#usr/share/man/man3/libnet-functions.h.3
#usr/share/man/man3/libnet-macros.h.3
#usr/share/man/man3/libnet.h.3
#usr/lib/libnet.so
usr/lib/libnet.so.9
usr/lib/libnet.so.9.0.0
#usr/lib/pkgconfig/libnet.pc
#usr/share/doc/libnet
#usr/share/doc/libnet/ChangeLog.md
#usr/share/doc/libnet/LICENSE
#usr/share/doc/libnet/README.md

View File

@@ -3,6 +3,7 @@ usr/bin/qmi-network
usr/bin/qmicli
#usr/include/libqmi-glib
#usr/include/libqmi-glib/libqmi-glib.h
#usr/include/libqmi-glib/qmi-atr.h
#usr/include/libqmi-glib/qmi-client.h
#usr/include/libqmi-glib/qmi-compat.h
#usr/include/libqmi-glib/qmi-device.h
@@ -12,7 +13,10 @@ usr/bin/qmicli
#usr/include/libqmi-glib/qmi-enum-types.h
#usr/include/libqmi-glib/qmi-enums-dms.h
#usr/include/libqmi-glib/qmi-enums-dsd.h
#usr/include/libqmi-glib/qmi-enums-fox.h
#usr/include/libqmi-glib/qmi-enums-gas.h
#usr/include/libqmi-glib/qmi-enums-imsa.h
#usr/include/libqmi-glib/qmi-enums-imsp.h
#usr/include/libqmi-glib/qmi-enums-loc.h
#usr/include/libqmi-glib/qmi-enums-nas.h
#usr/include/libqmi-glib/qmi-enums-oma.h
@@ -22,6 +26,7 @@ usr/bin/qmicli
#usr/include/libqmi-glib/qmi-enums-private.h
#usr/include/libqmi-glib/qmi-enums-qos.h
#usr/include/libqmi-glib/qmi-enums-sar.h
#usr/include/libqmi-glib/qmi-enums-ssc.h
#usr/include/libqmi-glib/qmi-enums-uim.h
#usr/include/libqmi-glib/qmi-enums-voice.h
#usr/include/libqmi-glib/qmi-enums-wda.h
@@ -30,14 +35,19 @@ usr/bin/qmicli
#usr/include/libqmi-glib/qmi-enums.h
#usr/include/libqmi-glib/qmi-error-types.h
#usr/include/libqmi-glib/qmi-errors.h
#usr/include/libqmi-glib/qmi-flag-types.h
#usr/include/libqmi-glib/qmi-flags64-dms.h
#usr/include/libqmi-glib/qmi-flags64-dsd.h
#usr/include/libqmi-glib/qmi-flags64-loc.h
#usr/include/libqmi-glib/qmi-flags64-nas.h
#usr/include/libqmi-glib/qmi-flags64-types.h
#usr/include/libqmi-glib/qmi-flags64-wds.h
#usr/include/libqmi-glib/qmi-fox.h
#usr/include/libqmi-glib/qmi-gas.h
#usr/include/libqmi-glib/qmi-gms.h
#usr/include/libqmi-glib/qmi-ims.h
#usr/include/libqmi-glib/qmi-imsa.h
#usr/include/libqmi-glib/qmi-imsp.h
#usr/include/libqmi-glib/qmi-loc.h
#usr/include/libqmi-glib/qmi-message-context.h
#usr/include/libqmi-glib/qmi-message.h
@@ -49,6 +59,7 @@ usr/bin/qmicli
#usr/include/libqmi-glib/qmi-proxy.h
#usr/include/libqmi-glib/qmi-qos.h
#usr/include/libqmi-glib/qmi-sar.h
#usr/include/libqmi-glib/qmi-ssc.h
#usr/include/libqmi-glib/qmi-uim.h
#usr/include/libqmi-glib/qmi-utils.h
#usr/include/libqmi-glib/qmi-version.h
@@ -56,415 +67,8 @@ usr/bin/qmicli
#usr/include/libqmi-glib/qmi-wda.h
#usr/include/libqmi-glib/qmi-wds.h
#usr/include/libqmi-glib/qmi-wms.h
#usr/lib/libqmi-glib.la
#usr/lib/libqmi-glib.so
usr/lib/libqmi-glib.so.5
usr/lib/libqmi-glib.so.5.8.0
usr/lib/libqmi-glib.so.5.10.0
#usr/lib/pkgconfig/qmi-glib.pc
usr/libexec/qmi-proxy
#usr/share/bash-completion/completions/qmicli
#usr/share/gtk-doc
#usr/share/gtk-doc/html
#usr/share/gtk-doc/html/libqmi-glib
#usr/share/gtk-doc/html/libqmi-glib/QmiClient.html
#usr/share/gtk-doc/html/libqmi-glib/QmiClientDms.html
#usr/share/gtk-doc/html/libqmi-glib/QmiClientDpm.html
#usr/share/gtk-doc/html/libqmi-glib/QmiClientDsd.html
#usr/share/gtk-doc/html/libqmi-glib/QmiClientGas.html
#usr/share/gtk-doc/html/libqmi-glib/QmiClientGms.html
#usr/share/gtk-doc/html/libqmi-glib/QmiClientLoc.html
#usr/share/gtk-doc/html/libqmi-glib/QmiClientNas.html
#usr/share/gtk-doc/html/libqmi-glib/QmiClientOma.html
#usr/share/gtk-doc/html/libqmi-glib/QmiClientPbm.html
#usr/share/gtk-doc/html/libqmi-glib/QmiClientPdc.html
#usr/share/gtk-doc/html/libqmi-glib/QmiClientPds.html
#usr/share/gtk-doc/html/libqmi-glib/QmiClientQos.html
#usr/share/gtk-doc/html/libqmi-glib/QmiClientSar.html
#usr/share/gtk-doc/html/libqmi-glib/QmiClientUim.html
#usr/share/gtk-doc/html/libqmi-glib/QmiClientVoice.html
#usr/share/gtk-doc/html/libqmi-glib/QmiClientWda.html
#usr/share/gtk-doc/html/libqmi-glib/QmiClientWds.html
#usr/share/gtk-doc/html/libqmi-glib/QmiClientWms.html
#usr/share/gtk-doc/html/libqmi-glib/QmiDevice.html
#usr/share/gtk-doc/html/libqmi-glib/QmiMessageContext.html
#usr/share/gtk-doc/html/libqmi-glib/QmiProxy.html
#usr/share/gtk-doc/html/libqmi-glib/annotation-glossary.html
#usr/share/gtk-doc/html/libqmi-glib/api-index-1-0.html
#usr/share/gtk-doc/html/libqmi-glib/api-index-1-10.html
#usr/share/gtk-doc/html/libqmi-glib/api-index-1-12.html
#usr/share/gtk-doc/html/libqmi-glib/api-index-1-14.html
#usr/share/gtk-doc/html/libqmi-glib/api-index-1-16.html
#usr/share/gtk-doc/html/libqmi-glib/api-index-1-18.html
#usr/share/gtk-doc/html/libqmi-glib/api-index-1-20.html
#usr/share/gtk-doc/html/libqmi-glib/api-index-1-22-4.html
#usr/share/gtk-doc/html/libqmi-glib/api-index-1-22.html
#usr/share/gtk-doc/html/libqmi-glib/api-index-1-24-6.html
#usr/share/gtk-doc/html/libqmi-glib/api-index-1-24.html
#usr/share/gtk-doc/html/libqmi-glib/api-index-1-26-2.html
#usr/share/gtk-doc/html/libqmi-glib/api-index-1-26-6.html
#usr/share/gtk-doc/html/libqmi-glib/api-index-1-26.html
#usr/share/gtk-doc/html/libqmi-glib/api-index-1-28-6.html
#usr/share/gtk-doc/html/libqmi-glib/api-index-1-28.html
#usr/share/gtk-doc/html/libqmi-glib/api-index-1-30-2.html
#usr/share/gtk-doc/html/libqmi-glib/api-index-1-30-8.html
#usr/share/gtk-doc/html/libqmi-glib/api-index-1-30.html
#usr/share/gtk-doc/html/libqmi-glib/api-index-1-4.html
#usr/share/gtk-doc/html/libqmi-glib/api-index-1-6.html
#usr/share/gtk-doc/html/libqmi-glib/api-index-1-8.html
#usr/share/gtk-doc/html/libqmi-glib/api-index-deprecated.html
#usr/share/gtk-doc/html/libqmi-glib/api-index-full.html
#usr/share/gtk-doc/html/libqmi-glib/ch01.html
#usr/share/gtk-doc/html/libqmi-glib/ch02.html
#usr/share/gtk-doc/html/libqmi-glib/ch02s02.html
#usr/share/gtk-doc/html/libqmi-glib/ch03.html
#usr/share/gtk-doc/html/libqmi-glib/ch03s02.html
#usr/share/gtk-doc/html/libqmi-glib/ch04.html
#usr/share/gtk-doc/html/libqmi-glib/ch04s02.html
#usr/share/gtk-doc/html/libqmi-glib/ch05.html
#usr/share/gtk-doc/html/libqmi-glib/ch05s02.html
#usr/share/gtk-doc/html/libqmi-glib/ch06.html
#usr/share/gtk-doc/html/libqmi-glib/ch06s02.html
#usr/share/gtk-doc/html/libqmi-glib/ch07.html
#usr/share/gtk-doc/html/libqmi-glib/ch07s02.html
#usr/share/gtk-doc/html/libqmi-glib/ch08.html
#usr/share/gtk-doc/html/libqmi-glib/ch09.html
#usr/share/gtk-doc/html/libqmi-glib/ch09s02.html
#usr/share/gtk-doc/html/libqmi-glib/ch10.html
#usr/share/gtk-doc/html/libqmi-glib/ch10s02.html
#usr/share/gtk-doc/html/libqmi-glib/ch11.html
#usr/share/gtk-doc/html/libqmi-glib/ch12.html
#usr/share/gtk-doc/html/libqmi-glib/ch12s02.html
#usr/share/gtk-doc/html/libqmi-glib/ch13.html
#usr/share/gtk-doc/html/libqmi-glib/ch13s02.html
#usr/share/gtk-doc/html/libqmi-glib/ch14.html
#usr/share/gtk-doc/html/libqmi-glib/ch14s02.html
#usr/share/gtk-doc/html/libqmi-glib/ch15.html
#usr/share/gtk-doc/html/libqmi-glib/ch16.html
#usr/share/gtk-doc/html/libqmi-glib/ch17.html
#usr/share/gtk-doc/html/libqmi-glib/ch18.html
#usr/share/gtk-doc/html/libqmi-glib/ch19.html
#usr/share/gtk-doc/html/libqmi-glib/ch20.html
#usr/share/gtk-doc/html/libqmi-glib/home.png
#usr/share/gtk-doc/html/libqmi-glib/index.html
#usr/share/gtk-doc/html/libqmi-glib/left-insensitive.png
#usr/share/gtk-doc/html/libqmi-glib/left.png
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-Common-enumerations-and-flags.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-Common-utilities.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Activate-Automatic-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Activate-Manual-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Delete-Stored-Image-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Event-Report-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Foxconn-Change-Device-Mode-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Foxconn-Get-Firmware-Version-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Foxconn-Set-FCC-Authentication-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Foxconn-Set-FCC-Authentication-v2-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Get-Activation-State-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Get-Alt-Net-Config-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Get-Band-Capabilities-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Get-Boot-Image-Download-Mode-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Get-Capabilities-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Get-Factory-SKU-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Get-Firmware-Preference-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Get-Hardware-Revision-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Get-IDs-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Get-MAC-Address-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Get-MSISDN-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Get-Manufacturer-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Get-Model-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Get-Operating-Mode-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Get-PRL-Version-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Get-Power-State-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Get-Revision-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Get-Software-Version-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Get-Stored-Image-Info-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Get-Supported-Messages-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Get-Time-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Get-User-Lock-State-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-HP-Change-Device-Mode-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-List-Stored-Images-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Read-ERI-File-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Read-User-Data-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Reset-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Restore-Factory-Defaults-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Set-Alt-Net-Config-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Set-Boot-Image-Download-Mode-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Set-Event-Report-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Set-FCC-Authentication-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Set-Firmware-ID-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Set-Firmware-Preference-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Set-Operating-Mode-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Set-Service-Programming-Code-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Set-Time-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Set-User-Lock-Code-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Set-User-Lock-State-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Swi-Get-Current-Firmware-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Swi-Get-USB-Composition-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Swi-Set-USB-Composition-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-UIM-Change-PIN-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-UIM-Get-CK-Status-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-UIM-Get-ICCID-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-UIM-Get-IMSI-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-UIM-Get-PIN-Status-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-UIM-Get-State-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-UIM-Set-CK-Protection-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-UIM-Set-PIN-Protection-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-UIM-Unblock-CK-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-UIM-Unblock-PIN-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-UIM-Verify-PIN-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Validate-Service-Programming-Code-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-Write-User-Data-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DMS-enumerations-and-flags.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DPM-Close-Port-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DPM-Open-Port-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DSD-Get-APN-Info-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DSD-Set-APN-Type-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-DSD-enumerations-and-flags.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-Deprecated-Interface.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-Errors.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-GAS-DMS-Get-Firmware-List-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-GAS-DMS-Set-Active-Firmware-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-GAS-enumerations-and-flags.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-GMS-Test-Get-Value-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-GMS-Test-Set-Value-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-LOC-Delete-Assistance-Data-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-LOC-Delete-Assistance-Data-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-LOC-Engine-State-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-LOC-Fix-Recurrence-Type-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-LOC-GNSS-Sv-Info-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-LOC-Get-Engine-Lock-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-LOC-Get-Engine-Lock-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-LOC-Get-NMEA-Types-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-LOC-Get-NMEA-Types-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-LOC-Get-Operation-Mode-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-LOC-Get-Operation-Mode-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-LOC-Get-Predicted-Orbits-Data-Source-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-LOC-Get-Predicted-Orbits-Data-Source-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-LOC-Get-Server-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-LOC-Get-Server-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-LOC-Inject-Predicted-Orbits-Data-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-LOC-Inject-Predicted-Orbits-Data-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-LOC-Inject-Xtra-Data-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-LOC-Inject-Xtra-Data-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-LOC-NMEA-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-LOC-Position-Report-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-LOC-Register-Events-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-LOC-Set-Engine-Lock-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-LOC-Set-Engine-Lock-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-LOC-Set-NMEA-Types-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-LOC-Set-NMEA-Types-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-LOC-Set-Operation-Mode-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-LOC-Set-Operation-Mode-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-LOC-Set-Server-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-LOC-Set-Server-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-LOC-Start-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-LOC-Stop-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-LOC-enumerations-and-flags.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-NAS-Attach-Detach-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-NAS-Config-Signal-Info-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-NAS-Event-Report-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-NAS-Force-Network-Search-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-NAS-Get-CDMA-Position-Info-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-NAS-Get-Cell-Location-Info-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-NAS-Get-DRX-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-NAS-Get-Home-Network-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-NAS-Get-LTE-Cphy-CA-Info-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-NAS-Get-Operator-Name-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-NAS-Get-PLMN-Name-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-NAS-Get-Preferred-Networks-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-NAS-Get-RF-Band-Information-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-NAS-Get-Serving-System-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-NAS-Get-Signal-Info-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-NAS-Get-Signal-Strength-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-NAS-Get-Supported-Messages-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-NAS-Get-System-Info-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-NAS-Get-System-Selection-Preference-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-NAS-Get-Technology-Preference-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-NAS-Get-Tx-Rx-Info-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-NAS-Initiate-Network-Register-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-NAS-Network-Reject-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-NAS-Network-Scan-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-NAS-Network-Time-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-NAS-Operator-Name-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-NAS-Register-Indications-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-NAS-Reset-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-NAS-Serving-System-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-NAS-Set-Event-Report-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-NAS-Set-Preferred-Networks-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-NAS-Set-System-Selection-Preference-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-NAS-Set-Technology-Preference-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-NAS-Signal-Info-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-NAS-Swi-Get-Status-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-NAS-System-Info-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-NAS-enumerations-and-flags.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-OMA-Cancel-Session-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-OMA-Event-Report-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-OMA-Get-Feature-Setting-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-OMA-Get-Session-Info-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-OMA-Reset-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-OMA-Send-Selection-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-OMA-Set-Event-Report-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-OMA-Set-Feature-Setting-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-OMA-Start-Session-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-OMA-enumerations-and-flags.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-PBM-Get-All-Capabilities-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-PBM-Get-Capabilities-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-PBM-Indication-Register-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-PBM-enumerations-and-flags.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-PDC-Activate-Config-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-PDC-Activate-Config-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-PDC-Config-Change-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-PDC-Deactivate-Config-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-PDC-Deactivate-Config-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-PDC-Delete-Config-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-PDC-Get-Config-Info-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-PDC-Get-Config-Info-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-PDC-Get-Config-Limits-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-PDC-Get-Default-Config-Info-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-PDC-Get-Selected-Config-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-PDC-Get-Selected-Config-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-PDC-List-Configs-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-PDC-List-Configs-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-PDC-Load-Config-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-PDC-Load-Config-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-PDC-Register-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-PDC-Reset-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-PDC-Set-Selected-Config-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-PDC-Set-Selected-Config-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-PDC-enumerations-and-flags.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-PDS-Event-Report-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-PDS-Get-AGPS-Config-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-PDS-Get-Auto-Tracking-State-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-PDS-Get-Default-Tracking-Session-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-PDS-Get-GPS-Service-State-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-PDS-Reset-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-PDS-Set-AGPS-Config-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-PDS-Set-Auto-Tracking-State-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-PDS-Set-Default-Tracking-Session-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-PDS-Set-Event-Report-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-PDS-Set-GPS-Service-State-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-PDS-enumerations-and-flags.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-QOS-Flow-Status-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-QOS-Get-Flow-Status-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-QOS-Get-Network-Status-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-QOS-Network-Status-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-QOS-Reset-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-QOS-Swi-Read-Data-Stats-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-QOS-enumerations-and-flags.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-QmiMessage.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-SAR-RF-Get-State-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-SAR-RF-Set-State-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-SAR-enumerations-and-flags.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-UIM-Card-Status-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-UIM-Change-PIN-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-UIM-Change-Provisioning-Session-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-UIM-Depersonalization-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-UIM-Get-Card-Status-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-UIM-Get-Configuration-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-UIM-Get-File-Attributes-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-UIM-Get-Slot-Status-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-UIM-Get-Supported-Messages-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-UIM-Power-Off-SIM-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-UIM-Power-On-SIM-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-UIM-Read-Record-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-UIM-Read-Transparent-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-UIM-Refresh-Complete-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-UIM-Refresh-Register-All-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-UIM-Refresh-Register-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-UIM-Refresh-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-UIM-Register-Events-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-UIM-Reset-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-UIM-Set-PIN-Protection-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-UIM-Slot-Status-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-UIM-Switch-Slot-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-UIM-Unblock-PIN-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-UIM-Verify-PIN-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-UIM-enumerations-and-flags.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-VOICE-All-Call-Status-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-VOICE-Answer-Call-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-VOICE-Answer-USSD-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-VOICE-Cancel-USSD-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-VOICE-Dial-Call-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-VOICE-End-Call-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-VOICE-Get-All-Call-Info-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-VOICE-Get-Call-Waiting-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-VOICE-Get-Config-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-VOICE-Get-Supported-Messages-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-VOICE-Indication-Register-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-VOICE-Manage-Calls-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-VOICE-Originate-USSD-No-Wait-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-VOICE-Originate-USSD-No-Wait-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-VOICE-Originate-USSD-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-VOICE-Release-USSD-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-VOICE-Set-Supplementary-Service-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-VOICE-Supplementary-Service-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-VOICE-USSD-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-Version-and-feature-checks.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-Voice-enumerations-and-flags.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WDA-Get-Data-Format-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WDA-Get-Supported-Messages-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WDA-Set-Data-Format-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WDA-enumerations-and-flags.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WDS-Bind-Data-Port-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WDS-Bind-Mux-Data-Port-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WDS-Create-Profile-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WDS-Delete-Profile-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WDS-Event-Report-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WDS-Get-Autoconnect-Settings-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WDS-Get-Channel-Rates-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WDS-Get-Current-Data-Bearer-Technology-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WDS-Get-Current-Settings-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WDS-Get-Data-Bearer-Technology-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WDS-Get-Default-Profile-Number-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WDS-Get-Default-Settings-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WDS-Get-Dormancy-Status-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WDS-Get-LTE-Attach-PDN-List-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WDS-Get-LTE-Attach-Parameters-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WDS-Get-Max-LTE-Attach-PDN-Number-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WDS-Get-PDN-Throttle-Info-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WDS-Get-Packet-Service-Status-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WDS-Get-Packet-Statistics-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WDS-Get-Profile-List-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WDS-Get-Profile-Settings-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WDS-Get-Supported-Messages-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WDS-Go-Active-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WDS-Go-Dormant-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WDS-Modify-Profile-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WDS-Packet-Service-Status-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WDS-Reset-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WDS-Set-Autoconnect-Settings-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WDS-Set-Default-Profile-Number-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WDS-Set-Event-Report-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WDS-Set-IP-Family-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WDS-Set-LTE-Attach-PDN-List-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WDS-Set-LTE-Attach-PDN-List-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WDS-Start-Network-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WDS-Stop-Network-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WDS-Swi-Create-Profile-Indexed-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WDS-enumerations-and-flags.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WMS-Delete-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WMS-Event-Report-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WMS-Get-Message-Protocol-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WMS-Get-Routes-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WMS-Get-Supported-Messages-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WMS-List-Messages-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WMS-Modify-Tag-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WMS-Raw-Read-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WMS-Raw-Send-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WMS-Raw-Write-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WMS-Reset-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WMS-SMSC-Address-indication.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WMS-Send-Ack-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WMS-Send-From-Memory-Storage-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WMS-Set-Event-Report-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WMS-Set-Routes-request.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib-WMS-enumerations-and-flags.html
#usr/share/gtk-doc/html/libqmi-glib/libqmi-glib.devhelp2
#usr/share/gtk-doc/html/libqmi-glib/object-tree.html
#usr/share/gtk-doc/html/libqmi-glib/right-insensitive.png
#usr/share/gtk-doc/html/libqmi-glib/right.png
#usr/share/gtk-doc/html/libqmi-glib/style.css
#usr/share/gtk-doc/html/libqmi-glib/up-insensitive.png
#usr/share/gtk-doc/html/libqmi-glib/up.png
#usr/share/man/man1/qmi-firmware-update.1
#usr/share/man/man1/qmi-network.1
#usr/share/man/man1/qmicli.1

View File

@@ -69,5 +69,5 @@
#usr/lib/libsodium.la
#usr/lib/libsodium.so
usr/lib/libsodium.so.26
usr/lib/libsodium.so.26.1.0
usr/lib/libsodium.so.26.2.0
#usr/lib/pkgconfig/libsodium.pc

View File

@@ -1,19 +1,6 @@
usr/bin/fax2ps
usr/bin/fax2tiff
usr/bin/pal2rgb
usr/bin/ppm2tiff
usr/bin/raw2tiff
usr/bin/tiff2bw
usr/bin/tiff2pdf
usr/bin/tiff2ps
usr/bin/tiff2rgba
usr/bin/tiffcmp
usr/bin/tiffcp
usr/bin/tiffcrop
usr/bin/tiffdither
usr/bin/tiffdump
usr/bin/tiffinfo
usr/bin/tiffmedian
usr/bin/tiffset
usr/bin/tiffsplit
#usr/include/tiff.h
@@ -21,466 +8,12 @@ usr/bin/tiffsplit
#usr/include/tiffio.h
#usr/include/tiffio.hxx
#usr/include/tiffvers.h
#usr/lib/libtiff.a
#usr/lib/libtiff.la
usr/lib/libtiff.so
usr/lib/libtiff.so.6
usr/lib/libtiff.so.6.0.1
#usr/lib/libtiffxx.a
usr/lib/libtiff.so.6.0.2
#usr/lib/libtiffxx.la
usr/lib/libtiffxx.so
usr/lib/libtiffxx.so.6
usr/lib/libtiffxx.so.6.0.1
usr/lib/libtiffxx.so.6.0.2
#usr/lib/pkgconfig/libtiff-4.pc
#usr/share/doc/tiff-4.5.1
#usr/share/doc/tiff-4.5.1/ChangeLog
#usr/share/doc/tiff-4.5.1/LICENSE.md
#usr/share/doc/tiff-4.5.1/README.md
#usr/share/doc/tiff-4.5.1/RELEASE-DATE
#usr/share/doc/tiff-4.5.1/TODO
#usr/share/doc/tiff-4.5.1/VERSION
#usr/share/doc/tiff-4.5.1/manual
#usr/share/doc/tiff-4.5.1/manual/.buildinfo
#usr/share/doc/tiff-4.5.1/manual/_images
#usr/share/doc/tiff-4.5.1/manual/_images/bali.jpg
#usr/share/doc/tiff-4.5.1/manual/_images/cat.gif
#usr/share/doc/tiff-4.5.1/manual/_images/cover.jpg
#usr/share/doc/tiff-4.5.1/manual/_images/cramps.gif
#usr/share/doc/tiff-4.5.1/manual/_images/dave.gif
#usr/share/doc/tiff-4.5.1/manual/_images/esri.png
#usr/share/doc/tiff-4.5.1/manual/_images/jim.gif
#usr/share/doc/tiff-4.5.1/manual/_images/leica.png
#usr/share/doc/tiff-4.5.1/manual/_images/quad.jpg
#usr/share/doc/tiff-4.5.1/manual/_images/ring.gif
#usr/share/doc/tiff-4.5.1/manual/_images/safe.png
#usr/share/doc/tiff-4.5.1/manual/_images/smallliz.jpg
#usr/share/doc/tiff-4.5.1/manual/_images/strike.gif
#usr/share/doc/tiff-4.5.1/manual/_images/weogeo.png
#usr/share/doc/tiff-4.5.1/manual/_sources
#usr/share/doc/tiff-4.5.1/manual/_sources/addingtags.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/build.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/contrib.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions
#usr/share/doc/tiff-4.5.1/manual/_sources/functions.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFAccessTagMethods.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFClientInfo.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFClose.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFCreateDirectory.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFCustomDirectory.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFCustomTagList.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFDataWidth.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFDeferStrileArrayWriting.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFError.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFFieldDataType.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFFieldName.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFFieldPassCount.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFFieldQuery.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFFieldReadCount.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFFieldTag.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFFieldWriteCount.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFFlush.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFGetField.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFMergeFieldInfo.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFOpen.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFOpenOptions.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFPrintDirectory.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFProcFunctions.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFRGBAImage.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFReadDirectory.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFReadEncodedStrip.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFReadEncodedTile.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFReadFromUserBuffer.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFReadRGBAImage.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFReadRGBAStrip.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFReadRGBATile.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFReadRawStrip.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFReadRawTile.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFReadScanline.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFReadTile.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFSetDirectory.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFSetField.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFSetTagExtender.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFStrileQuery.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFWarning.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFWriteDirectory.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFWriteEncodedStrip.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFWriteEncodedTile.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFWriteRawStrip.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFWriteRawTile.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFWriteScanline.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFWriteTile.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFbuffer.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFcodec.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFcolor.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFmemory.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFquery.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFsize.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFstrip.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFswab.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/TIFFtile.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/_TIFFRewriteField.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/_TIFFauxiliary.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/functions/libtiff.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/images.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/index.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/internals.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/libtiff.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/multi_page.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/project
#usr/share/doc/tiff-4.5.1/manual/_sources/project/acknowledgements.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/project/bugs.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/project/index.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/project/license.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/project/mailinglist.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/historical.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/index.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v3.4beta007.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v3.4beta016.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v3.4beta018.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v3.4beta024.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v3.4beta028.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v3.4beta029.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v3.4beta031.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v3.4beta032.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v3.4beta033.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v3.4beta034.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v3.4beta035.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v3.4beta036.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v3.5.1.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v3.5.2.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v3.5.3.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v3.5.4.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v3.5.5.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v3.5.6beta.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v3.5.7.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v3.6.0.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v3.6.1.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v3.7.0.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v3.7.0alpha.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v3.7.0beta.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v3.7.0beta2.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v3.7.1.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v3.7.2.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v3.7.3.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v3.7.4.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v3.8.0.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v3.8.1.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v3.8.2.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v3.9.0.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v3.9.0beta.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v3.9.1.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v3.9.2.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v3.9.3.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v3.9.4.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v3.9.5.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v4.0.0.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v4.0.1.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v4.0.10.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v4.0.2.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v4.0.3.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v4.0.4.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v4.0.4beta.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v4.0.5.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v4.0.6.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v4.0.7.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v4.0.8.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v4.0.9.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v4.1.0.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v4.2.0.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v4.3.0.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v4.4.0.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v4.5.0.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/releases/v4.5.1.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/specification
#usr/share/doc/tiff-4.5.1/manual/_sources/specification/bigtiff.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/specification/coverage-bigtiff.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/specification/coverage.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/specification/index.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/specification/technote2.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/terms.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/tools
#usr/share/doc/tiff-4.5.1/manual/_sources/tools.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/tools/fax2ps.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/tools/fax2tiff.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/tools/pal2rgb.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/tools/ppm2tiff.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/tools/raw2tiff.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/tools/rgb2ycbcr.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/tools/thumbnail.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/tools/tiff2bw.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/tools/tiff2pdf.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/tools/tiff2ps.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/tools/tiff2rgba.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/tools/tiffcmp.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/tools/tiffcp.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/tools/tiffcrop.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/tools/tiffdither.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/tools/tiffdump.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/tools/tiffgt.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/tools/tiffinfo.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/tools/tiffmedian.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/tools/tiffset.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_sources/tools/tiffsplit.rst.txt
#usr/share/doc/tiff-4.5.1/manual/_static
#usr/share/doc/tiff-4.5.1/manual/_static/basic.css
#usr/share/doc/tiff-4.5.1/manual/_static/contents.png
#usr/share/doc/tiff-4.5.1/manual/_static/doctools.js
#usr/share/doc/tiff-4.5.1/manual/_static/documentation_options.js
#usr/share/doc/tiff-4.5.1/manual/_static/file.png
#usr/share/doc/tiff-4.5.1/manual/_static/language_data.js
#usr/share/doc/tiff-4.5.1/manual/_static/minus.png
#usr/share/doc/tiff-4.5.1/manual/_static/navigation.png
#usr/share/doc/tiff-4.5.1/manual/_static/plus.png
#usr/share/doc/tiff-4.5.1/manual/_static/pygments.css
#usr/share/doc/tiff-4.5.1/manual/_static/searchtools.js
#usr/share/doc/tiff-4.5.1/manual/_static/sphinx_highlight.js
#usr/share/doc/tiff-4.5.1/manual/_static/sphinxdoc.css
#usr/share/doc/tiff-4.5.1/manual/addingtags.html
#usr/share/doc/tiff-4.5.1/manual/build.html
#usr/share/doc/tiff-4.5.1/manual/contrib.html
#usr/share/doc/tiff-4.5.1/manual/functions
#usr/share/doc/tiff-4.5.1/manual/functions.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFAccessTagMethods.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFClientInfo.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFClose.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFCreateDirectory.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFCustomDirectory.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFCustomTagList.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFDataWidth.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFDeferStrileArrayWriting.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFError.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFFieldDataType.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFFieldName.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFFieldPassCount.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFFieldQuery.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFFieldReadCount.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFFieldTag.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFFieldWriteCount.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFFlush.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFGetField.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFMergeFieldInfo.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFOpen.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFOpenOptions.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFPrintDirectory.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFProcFunctions.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFRGBAImage.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFReadDirectory.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFReadEncodedStrip.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFReadEncodedTile.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFReadFromUserBuffer.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFReadRGBAImage.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFReadRGBAStrip.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFReadRGBATile.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFReadRawStrip.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFReadRawTile.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFReadScanline.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFReadTile.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFSetDirectory.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFSetField.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFSetTagExtender.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFStrileQuery.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFWarning.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFWriteDirectory.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFWriteEncodedStrip.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFWriteEncodedTile.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFWriteRawStrip.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFWriteRawTile.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFWriteScanline.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFWriteTile.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFbuffer.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFcodec.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFcolor.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFmemory.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFquery.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFsize.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFstrip.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFswab.html
#usr/share/doc/tiff-4.5.1/manual/functions/TIFFtile.html
#usr/share/doc/tiff-4.5.1/manual/functions/_TIFFRewriteField.html
#usr/share/doc/tiff-4.5.1/manual/functions/_TIFFauxiliary.html
#usr/share/doc/tiff-4.5.1/manual/functions/libtiff.html
#usr/share/doc/tiff-4.5.1/manual/genindex.html
#usr/share/doc/tiff-4.5.1/manual/images.html
#usr/share/doc/tiff-4.5.1/manual/index.html
#usr/share/doc/tiff-4.5.1/manual/internals.html
#usr/share/doc/tiff-4.5.1/manual/libtiff.html
#usr/share/doc/tiff-4.5.1/manual/multi_page.html
#usr/share/doc/tiff-4.5.1/manual/objects.inv
#usr/share/doc/tiff-4.5.1/manual/project
#usr/share/doc/tiff-4.5.1/manual/project/acknowledgements.html
#usr/share/doc/tiff-4.5.1/manual/project/bugs.html
#usr/share/doc/tiff-4.5.1/manual/project/index.html
#usr/share/doc/tiff-4.5.1/manual/project/license.html
#usr/share/doc/tiff-4.5.1/manual/project/mailinglist.html
#usr/share/doc/tiff-4.5.1/manual/releases
#usr/share/doc/tiff-4.5.1/manual/releases/historical.html
#usr/share/doc/tiff-4.5.1/manual/releases/index.html
#usr/share/doc/tiff-4.5.1/manual/releases/v3.4beta007.html
#usr/share/doc/tiff-4.5.1/manual/releases/v3.4beta016.html
#usr/share/doc/tiff-4.5.1/manual/releases/v3.4beta018.html
#usr/share/doc/tiff-4.5.1/manual/releases/v3.4beta024.html
#usr/share/doc/tiff-4.5.1/manual/releases/v3.4beta028.html
#usr/share/doc/tiff-4.5.1/manual/releases/v3.4beta029.html
#usr/share/doc/tiff-4.5.1/manual/releases/v3.4beta031.html
#usr/share/doc/tiff-4.5.1/manual/releases/v3.4beta032.html
#usr/share/doc/tiff-4.5.1/manual/releases/v3.4beta033.html
#usr/share/doc/tiff-4.5.1/manual/releases/v3.4beta034.html
#usr/share/doc/tiff-4.5.1/manual/releases/v3.4beta035.html
#usr/share/doc/tiff-4.5.1/manual/releases/v3.4beta036.html
#usr/share/doc/tiff-4.5.1/manual/releases/v3.5.1.html
#usr/share/doc/tiff-4.5.1/manual/releases/v3.5.2.html
#usr/share/doc/tiff-4.5.1/manual/releases/v3.5.3.html
#usr/share/doc/tiff-4.5.1/manual/releases/v3.5.4.html
#usr/share/doc/tiff-4.5.1/manual/releases/v3.5.5.html
#usr/share/doc/tiff-4.5.1/manual/releases/v3.5.6beta.html
#usr/share/doc/tiff-4.5.1/manual/releases/v3.5.7.html
#usr/share/doc/tiff-4.5.1/manual/releases/v3.6.0.html
#usr/share/doc/tiff-4.5.1/manual/releases/v3.6.1.html
#usr/share/doc/tiff-4.5.1/manual/releases/v3.7.0.html
#usr/share/doc/tiff-4.5.1/manual/releases/v3.7.0alpha.html
#usr/share/doc/tiff-4.5.1/manual/releases/v3.7.0beta.html
#usr/share/doc/tiff-4.5.1/manual/releases/v3.7.0beta2.html
#usr/share/doc/tiff-4.5.1/manual/releases/v3.7.1.html
#usr/share/doc/tiff-4.5.1/manual/releases/v3.7.2.html
#usr/share/doc/tiff-4.5.1/manual/releases/v3.7.3.html
#usr/share/doc/tiff-4.5.1/manual/releases/v3.7.4.html
#usr/share/doc/tiff-4.5.1/manual/releases/v3.8.0.html
#usr/share/doc/tiff-4.5.1/manual/releases/v3.8.1.html
#usr/share/doc/tiff-4.5.1/manual/releases/v3.8.2.html
#usr/share/doc/tiff-4.5.1/manual/releases/v3.9.0.html
#usr/share/doc/tiff-4.5.1/manual/releases/v3.9.0beta.html
#usr/share/doc/tiff-4.5.1/manual/releases/v3.9.1.html
#usr/share/doc/tiff-4.5.1/manual/releases/v3.9.2.html
#usr/share/doc/tiff-4.5.1/manual/releases/v3.9.3.html
#usr/share/doc/tiff-4.5.1/manual/releases/v3.9.4.html
#usr/share/doc/tiff-4.5.1/manual/releases/v3.9.5.html
#usr/share/doc/tiff-4.5.1/manual/releases/v4.0.0.html
#usr/share/doc/tiff-4.5.1/manual/releases/v4.0.1.html
#usr/share/doc/tiff-4.5.1/manual/releases/v4.0.10.html
#usr/share/doc/tiff-4.5.1/manual/releases/v4.0.2.html
#usr/share/doc/tiff-4.5.1/manual/releases/v4.0.3.html
#usr/share/doc/tiff-4.5.1/manual/releases/v4.0.4.html
#usr/share/doc/tiff-4.5.1/manual/releases/v4.0.4beta.html
#usr/share/doc/tiff-4.5.1/manual/releases/v4.0.5.html
#usr/share/doc/tiff-4.5.1/manual/releases/v4.0.6.html
#usr/share/doc/tiff-4.5.1/manual/releases/v4.0.7.html
#usr/share/doc/tiff-4.5.1/manual/releases/v4.0.8.html
#usr/share/doc/tiff-4.5.1/manual/releases/v4.0.9.html
#usr/share/doc/tiff-4.5.1/manual/releases/v4.1.0.html
#usr/share/doc/tiff-4.5.1/manual/releases/v4.2.0.html
#usr/share/doc/tiff-4.5.1/manual/releases/v4.3.0.html
#usr/share/doc/tiff-4.5.1/manual/releases/v4.4.0.html
#usr/share/doc/tiff-4.5.1/manual/releases/v4.5.0.html
#usr/share/doc/tiff-4.5.1/manual/releases/v4.5.1.html
#usr/share/doc/tiff-4.5.1/manual/search.html
#usr/share/doc/tiff-4.5.1/manual/searchindex.js
#usr/share/doc/tiff-4.5.1/manual/specification
#usr/share/doc/tiff-4.5.1/manual/specification/bigtiff.html
#usr/share/doc/tiff-4.5.1/manual/specification/coverage-bigtiff.html
#usr/share/doc/tiff-4.5.1/manual/specification/coverage.html
#usr/share/doc/tiff-4.5.1/manual/specification/index.html
#usr/share/doc/tiff-4.5.1/manual/specification/technote2.html
#usr/share/doc/tiff-4.5.1/manual/terms.html
#usr/share/doc/tiff-4.5.1/manual/tools
#usr/share/doc/tiff-4.5.1/manual/tools.html
#usr/share/doc/tiff-4.5.1/manual/tools/fax2ps.html
#usr/share/doc/tiff-4.5.1/manual/tools/fax2tiff.html
#usr/share/doc/tiff-4.5.1/manual/tools/pal2rgb.html
#usr/share/doc/tiff-4.5.1/manual/tools/ppm2tiff.html
#usr/share/doc/tiff-4.5.1/manual/tools/raw2tiff.html
#usr/share/doc/tiff-4.5.1/manual/tools/rgb2ycbcr.html
#usr/share/doc/tiff-4.5.1/manual/tools/thumbnail.html
#usr/share/doc/tiff-4.5.1/manual/tools/tiff2bw.html
#usr/share/doc/tiff-4.5.1/manual/tools/tiff2pdf.html
#usr/share/doc/tiff-4.5.1/manual/tools/tiff2ps.html
#usr/share/doc/tiff-4.5.1/manual/tools/tiff2rgba.html
#usr/share/doc/tiff-4.5.1/manual/tools/tiffcmp.html
#usr/share/doc/tiff-4.5.1/manual/tools/tiffcp.html
#usr/share/doc/tiff-4.5.1/manual/tools/tiffcrop.html
#usr/share/doc/tiff-4.5.1/manual/tools/tiffdither.html
#usr/share/doc/tiff-4.5.1/manual/tools/tiffdump.html
#usr/share/doc/tiff-4.5.1/manual/tools/tiffgt.html
#usr/share/doc/tiff-4.5.1/manual/tools/tiffinfo.html
#usr/share/doc/tiff-4.5.1/manual/tools/tiffmedian.html
#usr/share/doc/tiff-4.5.1/manual/tools/tiffset.html
#usr/share/doc/tiff-4.5.1/manual/tools/tiffsplit.html
#usr/share/man/man1/fax2ps.1
#usr/share/man/man1/fax2tiff.1
#usr/share/man/man1/pal2rgb.1
#usr/share/man/man1/ppm2tiff.1
#usr/share/man/man1/raw2tiff.1
#usr/share/man/man1/rgb2ycbcr.1
#usr/share/man/man1/thumbnail.1
#usr/share/man/man1/tiff2bw.1
#usr/share/man/man1/tiff2pdf.1
#usr/share/man/man1/tiff2ps.1
#usr/share/man/man1/tiff2rgba.1
#usr/share/man/man1/tiffcmp.1
#usr/share/man/man1/tiffcp.1
#usr/share/man/man1/tiffcrop.1
#usr/share/man/man1/tiffdither.1
#usr/share/man/man1/tiffdump.1
#usr/share/man/man1/tiffgt.1
#usr/share/man/man1/tiffinfo.1
#usr/share/man/man1/tiffmedian.1
#usr/share/man/man1/tiffset.1
#usr/share/man/man1/tiffsplit.1
#usr/share/man/man3/TIFFAccessTagMethods.3tiff
#usr/share/man/man3/TIFFClientInfo.3tiff
#usr/share/man/man3/TIFFClose.3tiff
#usr/share/man/man3/TIFFCreateDirectory.3tiff
#usr/share/man/man3/TIFFCustomDirectory.3tiff
#usr/share/man/man3/TIFFCustomTagList.3tiff
#usr/share/man/man3/TIFFDataWidth.3tiff
#usr/share/man/man3/TIFFDeferStrileArrayWriting.3tiff
#usr/share/man/man3/TIFFError.3tiff
#usr/share/man/man3/TIFFFieldDataType.3tiff
#usr/share/man/man3/TIFFFieldName.3tiff
#usr/share/man/man3/TIFFFieldPassCount.3tiff
#usr/share/man/man3/TIFFFieldQuery.3tiff
#usr/share/man/man3/TIFFFieldReadCount.3tiff
#usr/share/man/man3/TIFFFieldTag.3tiff
#usr/share/man/man3/TIFFFieldWriteCount.3tiff
#usr/share/man/man3/TIFFFlush.3tiff
#usr/share/man/man3/TIFFGetField.3tiff
#usr/share/man/man3/TIFFMergeFieldInfo.3tiff
#usr/share/man/man3/TIFFOpen.3tiff
#usr/share/man/man3/TIFFPrintDirectory.3tiff
#usr/share/man/man3/TIFFProcFunctions.3tiff
#usr/share/man/man3/TIFFRGBAImage.3tiff
#usr/share/man/man3/TIFFReadDirectory.3tiff
#usr/share/man/man3/TIFFReadEncodedStrip.3tiff
#usr/share/man/man3/TIFFReadEncodedTile.3tiff
#usr/share/man/man3/TIFFReadFromUserBuffer.3tiff
#usr/share/man/man3/TIFFReadRGBAImage.3tiff
#usr/share/man/man3/TIFFReadRGBAStrip.3tiff
#usr/share/man/man3/TIFFReadRGBATile.3tiff
#usr/share/man/man3/TIFFReadRawStrip.3tiff
#usr/share/man/man3/TIFFReadRawTile.3tiff
#usr/share/man/man3/TIFFReadScanline.3tiff
#usr/share/man/man3/TIFFReadTile.3tiff
#usr/share/man/man3/TIFFSetDirectory.3tiff
#usr/share/man/man3/TIFFSetField.3tiff
#usr/share/man/man3/TIFFSetTagExtender.3tiff
#usr/share/man/man3/TIFFStrileQuery.3tiff
#usr/share/man/man3/TIFFWarning.3tiff
#usr/share/man/man3/TIFFWriteDirectory.3tiff
#usr/share/man/man3/TIFFWriteEncodedStrip.3tiff
#usr/share/man/man3/TIFFWriteEncodedTile.3tiff
#usr/share/man/man3/TIFFWriteRawStrip.3tiff
#usr/share/man/man3/TIFFWriteRawTile.3tiff
#usr/share/man/man3/TIFFWriteScanline.3tiff
#usr/share/man/man3/TIFFWriteTile.3tiff
#usr/share/man/man3/TIFFbuffer.3tiff
#usr/share/man/man3/TIFFcodec.3tiff
#usr/share/man/man3/TIFFcolor.3tiff
#usr/share/man/man3/TIFFmemory.3tiff
#usr/share/man/man3/TIFFquery.3tiff
#usr/share/man/man3/TIFFsize.3tiff
#usr/share/man/man3/TIFFstrip.3tiff
#usr/share/man/man3/TIFFswab.3tiff
#usr/share/man/man3/TIFFtile.3tiff
#usr/share/man/man3/_TIFFRewriteField.3tiff
#usr/share/man/man3/_TIFFauxiliary.3tiff
#usr/share/man/man3/libtiff.3tiff

View File

@@ -5,5 +5,5 @@ etc/udev/rules.d/23-usb.rules
#usr/lib/libusb-1.0.la
#usr/lib/libusb-1.0.so
usr/lib/libusb-1.0.so.0
usr/lib/libusb-1.0.so.0.3.0
usr/lib/libusb-1.0.so.0.4.0
#usr/lib/pkgconfig/libusb-1.0.pc

View File

@@ -54,80 +54,10 @@
#usr/lib/libxml2.la
#usr/lib/libxml2.so
usr/lib/libxml2.so.2
usr/lib/libxml2.so.2.12.3
usr/lib/libxml2.so.2.13.3
#usr/lib/pkgconfig/libxml-2.0.pc
#usr/share/aclocal/libxml.m4
#usr/share/doc/libxml2
#usr/share/doc/libxml2/examples
#usr/share/doc/libxml2/examples/index.html
#usr/share/doc/libxml2/examples/io1.c
#usr/share/doc/libxml2/examples/io2.c
#usr/share/doc/libxml2/examples/parse1.c
#usr/share/doc/libxml2/examples/parse2.c
#usr/share/doc/libxml2/examples/parse3.c
#usr/share/doc/libxml2/examples/parse4.c
#usr/share/doc/libxml2/examples/reader1.c
#usr/share/doc/libxml2/examples/reader2.c
#usr/share/doc/libxml2/examples/reader3.c
#usr/share/doc/libxml2/examples/reader4.c
#usr/share/doc/libxml2/examples/testWriter.c
#usr/share/doc/libxml2/examples/tree1.c
#usr/share/doc/libxml2/examples/tree2.c
#usr/share/doc/libxml2/examples/xmllint.c
#usr/share/doc/libxml2/examples/xpath1.c
#usr/share/doc/libxml2/examples/xpath2.c
#usr/share/doc/libxml2/tutorial
#usr/share/doc/libxml2/tutorial/apa.html
#usr/share/doc/libxml2/tutorial/apb.html
#usr/share/doc/libxml2/tutorial/apc.html
#usr/share/doc/libxml2/tutorial/apd.html
#usr/share/doc/libxml2/tutorial/ape.html
#usr/share/doc/libxml2/tutorial/apf.html
#usr/share/doc/libxml2/tutorial/apg.html
#usr/share/doc/libxml2/tutorial/aph.html
#usr/share/doc/libxml2/tutorial/api.html
#usr/share/doc/libxml2/tutorial/ar01s02.html
#usr/share/doc/libxml2/tutorial/ar01s03.html
#usr/share/doc/libxml2/tutorial/ar01s04.html
#usr/share/doc/libxml2/tutorial/ar01s05.html
#usr/share/doc/libxml2/tutorial/ar01s06.html
#usr/share/doc/libxml2/tutorial/ar01s07.html
#usr/share/doc/libxml2/tutorial/ar01s08.html
#usr/share/doc/libxml2/tutorial/ar01s09.html
#usr/share/doc/libxml2/tutorial/images
#usr/share/doc/libxml2/tutorial/images/blank.png
#usr/share/doc/libxml2/tutorial/images/callouts
#usr/share/doc/libxml2/tutorial/images/callouts/1.png
#usr/share/doc/libxml2/tutorial/images/callouts/10.png
#usr/share/doc/libxml2/tutorial/images/callouts/2.png
#usr/share/doc/libxml2/tutorial/images/callouts/3.png
#usr/share/doc/libxml2/tutorial/images/callouts/4.png
#usr/share/doc/libxml2/tutorial/images/callouts/5.png
#usr/share/doc/libxml2/tutorial/images/callouts/6.png
#usr/share/doc/libxml2/tutorial/images/callouts/7.png
#usr/share/doc/libxml2/tutorial/images/callouts/8.png
#usr/share/doc/libxml2/tutorial/images/callouts/9.png
#usr/share/doc/libxml2/tutorial/images/caution.png
#usr/share/doc/libxml2/tutorial/images/draft.png
#usr/share/doc/libxml2/tutorial/images/home.png
#usr/share/doc/libxml2/tutorial/images/important.png
#usr/share/doc/libxml2/tutorial/images/next.png
#usr/share/doc/libxml2/tutorial/images/note.png
#usr/share/doc/libxml2/tutorial/images/prev.png
#usr/share/doc/libxml2/tutorial/images/tip.png
#usr/share/doc/libxml2/tutorial/images/toc-blank.png
#usr/share/doc/libxml2/tutorial/images/toc-minus.png
#usr/share/doc/libxml2/tutorial/images/toc-plus.png
#usr/share/doc/libxml2/tutorial/images/up.png
#usr/share/doc/libxml2/tutorial/images/warning.png
#usr/share/doc/libxml2/tutorial/includeaddattribute.c
#usr/share/doc/libxml2/tutorial/includeaddkeyword.c
#usr/share/doc/libxml2/tutorial/includeconvert.c
#usr/share/doc/libxml2/tutorial/includegetattribute.c
#usr/share/doc/libxml2/tutorial/includekeyword.c
#usr/share/doc/libxml2/tutorial/includexpath.c
#usr/share/doc/libxml2/tutorial/index.html
#usr/share/doc/libxml2/tutorial/ix01.html
#usr/share/doc/libxml2/xmlcatalog.html
#usr/share/doc/libxml2/xmllint.html
#usr/share/gtk-doc/html/libxml2

View File

@@ -32,16 +32,15 @@ usr/bin/xsltproc
#usr/lib/libexslt.la
#usr/lib/libexslt.so
usr/lib/libexslt.so.0
usr/lib/libexslt.so.0.8.20
usr/lib/libexslt.so.0.8.23
#usr/lib/libxslt-plugins
#usr/lib/libxslt.la
#usr/lib/libxslt.so
usr/lib/libxslt.so.1
usr/lib/libxslt.so.1.1.37
usr/lib/libxslt.so.1.1.42
#usr/lib/pkgconfig/libexslt.pc
#usr/lib/pkgconfig/libxslt.pc
#usr/lib/xsltConf.sh
#usr/share/aclocal/libxslt.m4
#usr/share/doc/libxslt
#usr/share/doc/libxslt/tutorial
#usr/share/doc/libxslt/tutorial/images

View File

@@ -1,11 +1,17 @@
#etc/atmsigd.conf
#etc/hosts.atm
#lib/firmware/pca200e.bin
#lib/firmware/pca200e_ecd.bin2
#lib/firmware/sba200e_ecd.bin2
#usr/bin/aread
#usr/bin/atmdiag
#usr/bin/atmdump
#usr/bin/atmswitch
#usr/bin/awrite
#usr/bin/saaldump
#usr/bin/sonetdiag
#usr/bin/svc_recv
#usr/bin/svc_send
#usr/bin/ttcp_atm
#usr/include/atm.h
#usr/include/atmarp.h
@@ -14,41 +20,43 @@
#usr/include/atmsap.h
#usr/lib/libatm.a
#usr/lib/libatm.la
usr/lib/libatm.so
#usr/lib/libatm.so
usr/lib/libatm.so.1
usr/lib/libatm.so.1.0.0
#usr/man/man4
#usr/man/man4/atmsigd.conf.4
#usr/man/man7
#usr/man/man7/qos.7
#usr/man/man7/sap.7
#usr/man/man8
#usr/man/man8/atmaddr.8
#usr/man/man8/atmarp.8
#usr/man/man8/atmarpd.8
#usr/man/man8/atmdiag.8
#usr/man/man8/atmdump.8
#usr/man/man8/atmloop.8
#usr/man/man8/atmsigd.8
#usr/man/man8/atmtcp.8
#usr/man/man8/bus.8
#usr/man/man8/esi.8
#usr/man/man8/lecs.8
#usr/man/man8/les.8
#usr/man/man8/mpcd.8
#usr/man/man8/zeppelin.8
#usr/sbin/atmaddr
#usr/sbin/atmarp
#usr/sbin/atmarpd
#usr/sbin/atmloop
#usr/sbin/atmsigd
#usr/sbin/atmtcp
usr/sbin/br2684ctl
#usr/sbin/bus
#usr/sbin/enitune
#usr/sbin/esi
#usr/sbin/hediag
#usr/sbin/ilmid
#usr/sbin/ilmidiag
#usr/sbin/lecs
#usr/sbin/les
#usr/sbin/mpcd
#usr/sbin/zeppelin
#usr/sbin/zntune
#usr/share/man/man4/atmsigd.conf.4
#usr/share/man/man7/qos.7
#usr/share/man/man7/sap.7
#usr/share/man/man8/atmaddr.8
#usr/share/man/man8/atmarp.8
#usr/share/man/man8/atmarpd.8
#usr/share/man/man8/atmdiag.8
#usr/share/man/man8/atmdump.8
#usr/share/man/man8/atmloop.8
#usr/share/man/man8/atmsigd.8
#usr/share/man/man8/atmtcp.8
#usr/share/man/man8/br2684ctl.8
#usr/share/man/man8/bus.8
#usr/share/man/man8/esi.8
#usr/share/man/man8/ilmid.8
#usr/share/man/man8/lecs.8
#usr/share/man/man8/les.8
#usr/share/man/man8/mpcd.8
#usr/share/man/man8/zeppelin.8

View File

@@ -3,13 +3,14 @@ usr/bin/lz4
#usr/bin/lz4cat
#usr/bin/unlz4
#usr/include/lz4.h
#usr/include/lz4file.h
#usr/include/lz4frame.h
#usr/include/lz4frame_static.h
#usr/include/lz4hc.h
#usr/lib/liblz4.a
#usr/lib/liblz4.so
usr/lib/liblz4.so.1
usr/lib/liblz4.so.1.9.4
usr/lib/liblz4.so.1.10.0
#usr/lib/pkgconfig/liblz4.pc
#usr/share/man/man1/lz4.1
#usr/share/man/man1/lz4c.1

View File

@@ -178,18 +178,16 @@
#usr/local/share/man/man2/io_submit.2
#usr/local/share/man/man2/ioctl.2
#usr/local/share/man/man2/ioctl_console.2
#usr/local/share/man/man2/ioctl_eventpoll.2
#usr/local/share/man/man2/ioctl_fat.2
#usr/local/share/man/man2/ioctl_ficlone.2
#usr/local/share/man/man2/ioctl_ficlonerange.2
#usr/local/share/man/man2/ioctl_fideduperange.2
#usr/local/share/man/man2/ioctl_fslabel.2
#usr/local/share/man/man2/ioctl_getfsmap.2
#usr/local/share/man/man2/ioctl_iflags.2
#usr/local/share/man/man2/ioctl_ns.2
#usr/local/share/man/man2/ioctl_pagemap_scan.2
#usr/local/share/man/man2/ioctl_fs.2
#usr/local/share/man/man2/ioctl_fsmap.2
#usr/local/share/man/man2/ioctl_kd.2
#usr/local/share/man/man2/ioctl_nsfs.2
#usr/local/share/man/man2/ioctl_pipe.2
#usr/local/share/man/man2/ioctl_tty.2
#usr/local/share/man/man2/ioctl_userfaultfd.2
#usr/local/share/man/man2/ioctl_vt.2
#usr/local/share/man/man2/ioperm.2
#usr/local/share/man/man2/iopl.2
#usr/local/share/man/man2/ioprio_get.2
@@ -512,6 +510,219 @@
#usr/local/share/man/man2/waitpid.2
#usr/local/share/man/man2/write.2
#usr/local/share/man/man2/writev.2
#usr/local/share/man/man2const
#usr/local/share/man/man2const/EPIOCGPARAMS.2const
#usr/local/share/man/man2const/EPIOCSPARAMS.2const
#usr/local/share/man/man2const/FAT_IOCTL_GET_ATTRIBUTES.2const
#usr/local/share/man/man2const/FAT_IOCTL_GET_VOLUME_ID.2const
#usr/local/share/man/man2const/FAT_IOCTL_SET_ATTRIBUTES.2const
#usr/local/share/man/man2const/FICLONE.2const
#usr/local/share/man/man2const/FICLONERANGE.2const
#usr/local/share/man/man2const/FIDEDUPERANGE.2const
#usr/local/share/man/man2const/FIONREAD.2const
#usr/local/share/man/man2const/FS_IOC_GETFLAGS.2const
#usr/local/share/man/man2const/FS_IOC_GETFSLABEL.2const
#usr/local/share/man/man2const/FS_IOC_GETFSMAP.2const
#usr/local/share/man/man2const/FS_IOC_SETFLAGS.2const
#usr/local/share/man/man2const/FS_IOC_SETFSLABEL.2const
#usr/local/share/man/man2const/GIO_CMAP.2const
#usr/local/share/man/man2const/GIO_FONT.2const
#usr/local/share/man/man2const/GIO_FONTX.2const
#usr/local/share/man/man2const/GIO_SCRNMAP.2const
#usr/local/share/man/man2const/GIO_UNIMAP.2const
#usr/local/share/man/man2const/GIO_UNISCRNMAP.2const
#usr/local/share/man/man2const/KDADDIO.2const
#usr/local/share/man/man2const/KDDELIO.2const
#usr/local/share/man/man2const/KDDISABIO.2const
#usr/local/share/man/man2const/KDENABIO.2const
#usr/local/share/man/man2const/KDGETKEYCODE.2const
#usr/local/share/man/man2const/KDGETLED.2const
#usr/local/share/man/man2const/KDGETMODE.2const
#usr/local/share/man/man2const/KDGKBDIACR.2const
#usr/local/share/man/man2const/KDGKBENT.2const
#usr/local/share/man/man2const/KDGKBLED.2const
#usr/local/share/man/man2const/KDGKBMETA.2const
#usr/local/share/man/man2const/KDGKBMODE.2const
#usr/local/share/man/man2const/KDGKBSENT.2const
#usr/local/share/man/man2const/KDGKBTYPE.2const
#usr/local/share/man/man2const/KDMKTONE.2const
#usr/local/share/man/man2const/KDSETKEYCODE.2const
#usr/local/share/man/man2const/KDSETLED.2const
#usr/local/share/man/man2const/KDSETMODE.2const
#usr/local/share/man/man2const/KDSIGACCEPT.2const
#usr/local/share/man/man2const/KDSKBENT.2const
#usr/local/share/man/man2const/KDSKBLED.2const
#usr/local/share/man/man2const/KDSKBMETA.2const
#usr/local/share/man/man2const/KDSKBMODE.2const
#usr/local/share/man/man2const/KDSKBSENT.2const
#usr/local/share/man/man2const/KIOCSOUND.2const
#usr/local/share/man/man2const/NS_GET_NSTYPE.2const
#usr/local/share/man/man2const/NS_GET_OWNER_UID.2const
#usr/local/share/man/man2const/NS_GET_PARENT.2const
#usr/local/share/man/man2const/NS_GET_USERNS.2const
#usr/local/share/man/man2const/PAGEMAP_SCAN.2const
#usr/local/share/man/man2const/PIO_CMAP.2const
#usr/local/share/man/man2const/PIO_FONT.2const
#usr/local/share/man/man2const/PIO_FONTRESET.2const
#usr/local/share/man/man2const/PIO_FONTX.2const
#usr/local/share/man/man2const/PIO_SCRNMAP.2const
#usr/local/share/man/man2const/PIO_UNIMAP.2const
#usr/local/share/man/man2const/PIO_UNIMAPCLR.2const
#usr/local/share/man/man2const/PIO_UNISCRNMAP.2const
#usr/local/share/man/man2const/PR_CAPBSET_DROP.2const
#usr/local/share/man/man2const/PR_CAPBSET_READ.2const
#usr/local/share/man/man2const/PR_CAP_AMBIENT.2const
#usr/local/share/man/man2const/PR_CAP_AMBIENT_CLEAR_ALL.2const
#usr/local/share/man/man2const/PR_CAP_AMBIENT_IS_SET.2const
#usr/local/share/man/man2const/PR_CAP_AMBIENT_LOWER.2const
#usr/local/share/man/man2const/PR_CAP_AMBIENT_RAISE.2const
#usr/local/share/man/man2const/PR_GET_AUXV.2const
#usr/local/share/man/man2const/PR_GET_CHILD_SUBREAPER.2const
#usr/local/share/man/man2const/PR_GET_DUMPABLE.2const
#usr/local/share/man/man2const/PR_GET_ENDIAN.2const
#usr/local/share/man/man2const/PR_GET_FPEMU.2const
#usr/local/share/man/man2const/PR_GET_FPEXC.2const
#usr/local/share/man/man2const/PR_GET_FP_MODE.2const
#usr/local/share/man/man2const/PR_GET_IO_FLUSHER.2const
#usr/local/share/man/man2const/PR_GET_KEEPCAPS.2const
#usr/local/share/man/man2const/PR_GET_MDWE.2const
#usr/local/share/man/man2const/PR_GET_NAME.2const
#usr/local/share/man/man2const/PR_GET_NO_NEW_PRIVS.2const
#usr/local/share/man/man2const/PR_GET_PDEATHSIG.2const
#usr/local/share/man/man2const/PR_GET_SECCOMP.2const
#usr/local/share/man/man2const/PR_GET_SECUREBITS.2const
#usr/local/share/man/man2const/PR_GET_SPECULATION_CTRL.2const
#usr/local/share/man/man2const/PR_GET_TAGGED_ADDR_CTRL.2const
#usr/local/share/man/man2const/PR_GET_THP_DISABLE.2const
#usr/local/share/man/man2const/PR_GET_TID_ADDRESS.2const
#usr/local/share/man/man2const/PR_GET_TIMERSLACK.2const
#usr/local/share/man/man2const/PR_GET_TIMING.2const
#usr/local/share/man/man2const/PR_GET_TSC.2const
#usr/local/share/man/man2const/PR_GET_UNALIGN.2const
#usr/local/share/man/man2const/PR_MCE_KILL.2const
#usr/local/share/man/man2const/PR_MCE_KILL_CLEAR.2const
#usr/local/share/man/man2const/PR_MCE_KILL_GET.2const
#usr/local/share/man/man2const/PR_MCE_KILL_SET.2const
#usr/local/share/man/man2const/PR_MPX_DISABLE_MANAGEMENT.2const
#usr/local/share/man/man2const/PR_MPX_ENABLE_MANAGEMENT.2const
#usr/local/share/man/man2const/PR_PAC_RESET_KEYS.2const
#usr/local/share/man/man2const/PR_SET_CHILD_SUBREAPER.2const
#usr/local/share/man/man2const/PR_SET_DUMPABLE.2const
#usr/local/share/man/man2const/PR_SET_ENDIAN.2const
#usr/local/share/man/man2const/PR_SET_FPEMU.2const
#usr/local/share/man/man2const/PR_SET_FPEXC.2const
#usr/local/share/man/man2const/PR_SET_FP_MODE.2const
#usr/local/share/man/man2const/PR_SET_IO_FLUSHER.2const
#usr/local/share/man/man2const/PR_SET_KEEPCAPS.2const
#usr/local/share/man/man2const/PR_SET_MDWE.2const
#usr/local/share/man/man2const/PR_SET_MM.2const
#usr/local/share/man/man2const/PR_SET_MM_ARG_END.2const
#usr/local/share/man/man2const/PR_SET_MM_ARG_START.2const
#usr/local/share/man/man2const/PR_SET_MM_AUXV.2const
#usr/local/share/man/man2const/PR_SET_MM_BRK.2const
#usr/local/share/man/man2const/PR_SET_MM_END_CODE.2const
#usr/local/share/man/man2const/PR_SET_MM_END_DATA.2const
#usr/local/share/man/man2const/PR_SET_MM_ENV_END.2const
#usr/local/share/man/man2const/PR_SET_MM_ENV_START.2const
#usr/local/share/man/man2const/PR_SET_MM_EXE_FILE.2const
#usr/local/share/man/man2const/PR_SET_MM_MAP.2const
#usr/local/share/man/man2const/PR_SET_MM_MAP_SIZE.2const
#usr/local/share/man/man2const/PR_SET_MM_START_BRK.2const
#usr/local/share/man/man2const/PR_SET_MM_START_CODE.2const
#usr/local/share/man/man2const/PR_SET_MM_START_DATA.2const
#usr/local/share/man/man2const/PR_SET_MM_START_STACK.2const
#usr/local/share/man/man2const/PR_SET_NAME.2const
#usr/local/share/man/man2const/PR_SET_NO_NEW_PRIVS.2const
#usr/local/share/man/man2const/PR_SET_PDEATHSIG.2const
#usr/local/share/man/man2const/PR_SET_PTRACER.2const
#usr/local/share/man/man2const/PR_SET_SECCOMP.2const
#usr/local/share/man/man2const/PR_SET_SECUREBITS.2const
#usr/local/share/man/man2const/PR_SET_SPECULATION_CTRL.2const
#usr/local/share/man/man2const/PR_SET_SYSCALL_USER_DISPATCH.2const
#usr/local/share/man/man2const/PR_SET_TAGGED_ADDR_CTRL.2const
#usr/local/share/man/man2const/PR_SET_THP_DISABLE.2const
#usr/local/share/man/man2const/PR_SET_TIMERSLACK.2const
#usr/local/share/man/man2const/PR_SET_TIMING.2const
#usr/local/share/man/man2const/PR_SET_TSC.2const
#usr/local/share/man/man2const/PR_SET_UNALIGN.2const
#usr/local/share/man/man2const/PR_SET_VMA.2const
#usr/local/share/man/man2const/PR_SVE_GET_VL.2const
#usr/local/share/man/man2const/PR_SVE_SET_VL.2const
#usr/local/share/man/man2const/PR_TASK_PERF_EVENTS_DISABLE.2const
#usr/local/share/man/man2const/PR_TASK_PERF_EVENTS_ENABLE.2const
#usr/local/share/man/man2const/TCFLSH.2const
#usr/local/share/man/man2const/TCGETA.2const
#usr/local/share/man/man2const/TCGETS.2const
#usr/local/share/man/man2const/TCGETS2.2const
#usr/local/share/man/man2const/TCSBRK.2const
#usr/local/share/man/man2const/TCSBRKP.2const
#usr/local/share/man/man2const/TCSETA.2const
#usr/local/share/man/man2const/TCSETAF.2const
#usr/local/share/man/man2const/TCSETAW.2const
#usr/local/share/man/man2const/TCSETS.2const
#usr/local/share/man/man2const/TCSETS2.2const
#usr/local/share/man/man2const/TCSETSF.2const
#usr/local/share/man/man2const/TCSETSF2.2const
#usr/local/share/man/man2const/TCSETSW.2const
#usr/local/share/man/man2const/TCSETSW2.2const
#usr/local/share/man/man2const/TCXONC.2const
#usr/local/share/man/man2const/TIOCCBRK.2const
#usr/local/share/man/man2const/TIOCCONS.2const
#usr/local/share/man/man2const/TIOCEXCL.2const
#usr/local/share/man/man2const/TIOCGETD.2const
#usr/local/share/man/man2const/TIOCGEXCL.2const
#usr/local/share/man/man2const/TIOCGICOUNT.2const
#usr/local/share/man/man2const/TIOCGLCKTRMIOS.2const
#usr/local/share/man/man2const/TIOCGPGRP.2const
#usr/local/share/man/man2const/TIOCGPKT.2const
#usr/local/share/man/man2const/TIOCGPTLCK.2const
#usr/local/share/man/man2const/TIOCGPTPEER.2const
#usr/local/share/man/man2const/TIOCGSID.2const
#usr/local/share/man/man2const/TIOCGSOFTCAR.2const
#usr/local/share/man/man2const/TIOCGWINSZ.2const
#usr/local/share/man/man2const/TIOCINQ.2const
#usr/local/share/man/man2const/TIOCLINUX.2const
#usr/local/share/man/man2const/TIOCMBIC.2const
#usr/local/share/man/man2const/TIOCMBIS.2const
#usr/local/share/man/man2const/TIOCMGET.2const
#usr/local/share/man/man2const/TIOCMIWAIT.2const
#usr/local/share/man/man2const/TIOCMSET.2const
#usr/local/share/man/man2const/TIOCNOTTY.2const
#usr/local/share/man/man2const/TIOCNXCL.2const
#usr/local/share/man/man2const/TIOCOUTQ.2const
#usr/local/share/man/man2const/TIOCPKT.2const
#usr/local/share/man/man2const/TIOCSBRK.2const
#usr/local/share/man/man2const/TIOCSCTTY.2const
#usr/local/share/man/man2const/TIOCSERGETLSR.2const
#usr/local/share/man/man2const/TIOCSETD.2const
#usr/local/share/man/man2const/TIOCSLCKTRMIOS.2const
#usr/local/share/man/man2const/TIOCSPGRP.2const
#usr/local/share/man/man2const/TIOCSPTLCK.2const
#usr/local/share/man/man2const/TIOCSSOFTCAR.2const
#usr/local/share/man/man2const/TIOCSTI.2const
#usr/local/share/man/man2const/TIOCSWINSZ.2const
#usr/local/share/man/man2const/TIOCTTYGSTRUCT.2const
#usr/local/share/man/man2const/UFFDIO_API.2const
#usr/local/share/man/man2const/UFFDIO_CONTINUE.2const
#usr/local/share/man/man2const/UFFDIO_COPY.2const
#usr/local/share/man/man2const/UFFDIO_POISON.2const
#usr/local/share/man/man2const/UFFDIO_REGISTER.2const
#usr/local/share/man/man2const/UFFDIO_UNREGISTER.2const
#usr/local/share/man/man2const/UFFDIO_WAKE.2const
#usr/local/share/man/man2const/UFFDIO_WRITEPROTECT.2const
#usr/local/share/man/man2const/UFFDIO_ZEROPAGE.2const
#usr/local/share/man/man2const/VFAT_IOCTL_READDIR_BOTH.2const
#usr/local/share/man/man2const/VFAT_IOCTL_READDIR_SHORT.2const
#usr/local/share/man/man2const/VT_ACTIVATE.2const
#usr/local/share/man/man2const/VT_DISALLOCATE.2const
#usr/local/share/man/man2const/VT_GETMODE.2const
#usr/local/share/man/man2const/VT_GETSTATE.2const
#usr/local/share/man/man2const/VT_OPENQRY.2const
#usr/local/share/man/man2const/VT_RELDISP.2const
#usr/local/share/man/man2const/VT_RESIZE.2const
#usr/local/share/man/man2const/VT_RESIZEX.2const
#usr/local/share/man/man2const/VT_SETMODE.2const
#usr/local/share/man/man2const/VT_WAITACTIVE.2const
#usr/local/share/man/man2type
#usr/local/share/man/man2type/open_how.2type
#usr/local/share/man/man3/CIRCLEQ_EMPTY.3
@@ -2291,6 +2502,8 @@
#usr/local/share/man/man3type/regex_t.3type
#usr/local/share/man/man3type/regmatch_t.3type
#usr/local/share/man/man3type/regoff_t.3type
#usr/local/share/man/man3type/rlim_t.3type
#usr/local/share/man/man3type/rlimit.3type
#usr/local/share/man/man3type/sa_family_t.3type
#usr/local/share/man/man3type/sigevent.3type
#usr/local/share/man/man3type/siginfo_t.3type

View File

@@ -20,34 +20,32 @@ usr/bin/tset
#usr/include/etip.h
#usr/include/form.h
#usr/include/menu.h
#usr/include/nc_tparm.h
#usr/include/ncurses.h
#usr/include/ncurses_dll.h
#usr/include/panel.h
#usr/include/term.h
#usr/include/term_entry.h
#usr/include/termcap.h
#usr/include/tic.h
#usr/include/unctrl.h
#usr/lib/libcurses.so
#usr/lib/libcursesw.so
#usr/lib/libform.so
#usr/lib/libformw.so
usr/lib/libformw.so.6
usr/lib/libformw.so.6.4
usr/lib/libformw.so.6.5
#usr/lib/libmenu.so
#usr/lib/libmenuw.so
usr/lib/libmenuw.so.6
usr/lib/libmenuw.so.6.4
usr/lib/libmenuw.so.6.5
#usr/lib/libncurses++w.a
#usr/lib/libncurses.so
#usr/lib/libncursesw.so
usr/lib/libncursesw.so.6
usr/lib/libncursesw.so.6.4
usr/lib/libncursesw.so.6.5
#usr/lib/libpanel.so
#usr/lib/libpanelw.so
usr/lib/libpanelw.so.6
usr/lib/libpanelw.so.6.4
usr/lib/libpanelw.so.6.5
#usr/lib/pkgconfig/form.pc
#usr/lib/pkgconfig/formw.pc
#usr/lib/pkgconfig/menu.pc
@@ -71,15 +69,30 @@ usr/lib/libpanelw.so.6.4
#usr/share/man/man1/tset.1
#usr/share/man/man3/BC.3x
#usr/share/man/man3/COLORS.3x
#usr/share/man/man3/COLOR_BLACK.3x
#usr/share/man/man3/COLOR_BLUE.3x
#usr/share/man/man3/COLOR_CYAN.3x
#usr/share/man/man3/COLOR_GREEN.3x
#usr/share/man/man3/COLOR_MAGENTA.3x
#usr/share/man/man3/COLOR_PAIR.3x
#usr/share/man/man3/COLOR_PAIRS.3x
#usr/share/man/man3/COLOR_RED.3x
#usr/share/man/man3/COLOR_WHITE.3x
#usr/share/man/man3/COLOR_YELLOW.3x
#usr/share/man/man3/COLS.3x
#usr/share/man/man3/ERR.3x
#usr/share/man/man3/ESCDELAY.3x
#usr/share/man/man3/FALSE.3x
#usr/share/man/man3/LINES.3x
#usr/share/man/man3/NCURSES_SCREEN_CB.3x
#usr/share/man/man3/NCURSES_WINDOW_CB.3x
#usr/share/man/man3/OK.3x
#usr/share/man/man3/PAIR_NUMBER.3x
#usr/share/man/man3/PC.3x
#usr/share/man/man3/SCREEN.3x
#usr/share/man/man3/SP.3x
#usr/share/man/man3/TABSIZE.3x
#usr/share/man/man3/TRUE.3x
#usr/share/man/man3/TYPE_ALNUM.3x
#usr/share/man/man3/TYPE_ALPHA.3x
#usr/share/man/man3/TYPE_ENUM.3x
@@ -88,6 +101,7 @@ usr/lib/libpanelw.so.6.4
#usr/share/man/man3/TYPE_NUMERIC.3x
#usr/share/man/man3/TYPE_REGEXP.3x
#usr/share/man/man3/UP.3x
#usr/share/man/man3/WINDOW.3x
#usr/share/man/man3/_nc_free_and_exit.3x
#usr/share/man/man3/_nc_free_tinfo.3x
#usr/share/man/man3/_nc_freeall.3x
@@ -121,6 +135,7 @@ usr/lib/libpanelw.so.6.4
#usr/share/man/man3/attr_off.3x
#usr/share/man/man3/attr_on.3x
#usr/share/man/man3/attr_set.3x
#usr/share/man/man3/attr_t.3x
#usr/share/man/man3/attroff.3x
#usr/share/man/man3/attron.3x
#usr/share/man/man3/attrset.3x
@@ -132,6 +147,7 @@ usr/lib/libpanelw.so.6.4
#usr/share/man/man3/bkgdset.3x
#usr/share/man/man3/bkgrnd.3x
#usr/share/man/man3/bkgrndset.3x
#usr/share/man/man3/bool.3x
#usr/share/man/man3/boolcodes.3x
#usr/share/man/man3/boolfnames.3x
#usr/share/man/man3/boolnames.3x
@@ -144,8 +160,10 @@ usr/lib/libpanelw.so.6.4
#usr/share/man/man3/can_change_color_sp.3x
#usr/share/man/man3/cbreak.3x
#usr/share/man/man3/cbreak_sp.3x
#usr/share/man/man3/cchar_t.3x
#usr/share/man/man3/ceiling_panel.3x
#usr/share/man/man3/chgat.3x
#usr/share/man/man3/chtype.3x
#usr/share/man/man3/clear.3x
#usr/share/man/man3/clearok.3x
#usr/share/man/man3/clrtobot.3x
@@ -409,16 +427,24 @@ usr/lib/libpanelw.so.6.4
#usr/share/man/man3/intrflush.3x
#usr/share/man/man3/intrflush_sp.3x
#usr/share/man/man3/inwstr.3x
#usr/share/man/man3/is_cbreak.3x
#usr/share/man/man3/is_cbreak_sp.3x
#usr/share/man/man3/is_cleared.3x
#usr/share/man/man3/is_echo.3x
#usr/share/man/man3/is_echo_sp.3x
#usr/share/man/man3/is_idcok.3x
#usr/share/man/man3/is_idlok.3x
#usr/share/man/man3/is_immedok.3x
#usr/share/man/man3/is_keypad.3x
#usr/share/man/man3/is_leaveok.3x
#usr/share/man/man3/is_linetouched.3x
#usr/share/man/man3/is_nl.3x
#usr/share/man/man3/is_nl_sp.3x
#usr/share/man/man3/is_nodelay.3x
#usr/share/man/man3/is_notimeout.3x
#usr/share/man/man3/is_pad.3x
#usr/share/man/man3/is_raw.3x
#usr/share/man/man3/is_raw_sp.3x
#usr/share/man/man3/is_scrollok.3x
#usr/share/man/man3/is_subwin.3x
#usr/share/man/man3/is_syncok.3x
@@ -746,6 +772,7 @@ usr/lib/libpanelw.so.6.4
#usr/share/man/man3/setcchar.3x
#usr/share/man/man3/setscrreg.3x
#usr/share/man/man3/setsyx.3x
#usr/share/man/man3/setterm.3x
#usr/share/man/man3/setupterm.3x
#usr/share/man/man3/show_panel.3x
#usr/share/man/man3/slk_attr.3x
@@ -815,6 +842,8 @@ usr/lib/libpanelw.so.6.4
#usr/share/man/man3/tigetstr_sp.3x
#usr/share/man/man3/timeout.3x
#usr/share/man/man3/tiparm.3x
#usr/share/man/man3/tiparm_s.3x
#usr/share/man/man3/tiscan_s.3x
#usr/share/man/man3/top_panel.3x
#usr/share/man/man3/top_row.3x
#usr/share/man/man3/touchline.3x
@@ -1178,6 +1207,7 @@ usr/share/terminfo/E/Eterm-color
#usr/share/terminfo/a/ampex80
#usr/share/terminfo/a/annarbor4080
usr/share/terminfo/a/ansi
#usr/share/terminfo/a/ansi+apparrows
#usr/share/terminfo/a/ansi+arrows
#usr/share/terminfo/a/ansi+cpr
#usr/share/terminfo/a/ansi+csr
@@ -1541,6 +1571,9 @@ usr/share/terminfo/c/cons25
#usr/share/terminfo/c/contel301
#usr/share/terminfo/c/contel320
#usr/share/terminfo/c/contel321
#usr/share/terminfo/c/contour
#usr/share/terminfo/c/contour-direct
#usr/share/terminfo/c/contour-latest
#usr/share/terminfo/c/cops
#usr/share/terminfo/c/cops-10
#usr/share/terminfo/c/cops10
@@ -2256,6 +2289,7 @@ usr/share/terminfo/k/konsole-256color
#usr/share/terminfo/l/lft-pc850
usr/share/terminfo/l/linux
#usr/share/terminfo/l/linux+decid
#usr/share/terminfo/l/linux+kbs
#usr/share/terminfo/l/linux+sfkeys
#usr/share/terminfo/l/linux-16color
#usr/share/terminfo/l/linux-basic
@@ -2362,6 +2396,7 @@ usr/share/terminfo/m/mlterm
#usr/share/terminfo/m/morphos
#usr/share/terminfo/m/mosh
#usr/share/terminfo/m/mosh-256color
#usr/share/terminfo/m/mostlike
#usr/share/terminfo/m/mouse-sun
usr/share/terminfo/m/mrxvt
#usr/share/terminfo/m/mrxvt-256color
@@ -2369,6 +2404,7 @@ usr/share/terminfo/m/mrxvt
#usr/share/terminfo/m/ms-vt-utf8
#usr/share/terminfo/m/ms-vt100
#usr/share/terminfo/m/ms-vt100+
#usr/share/terminfo/m/ms-vt100-16color
#usr/share/terminfo/m/ms-vt100-color
#usr/share/terminfo/m/msk227
#usr/share/terminfo/m/msk22714
@@ -2596,6 +2632,7 @@ usr/share/terminfo/n/nsterm
#usr/share/terminfo/o/oldibmpc3
#usr/share/terminfo/o/oldpc3
#usr/share/terminfo/o/oldsun
#usr/share/terminfo/o/oldxterm+sm+1006
#usr/share/terminfo/o/omron
#usr/share/terminfo/o/opennt
#usr/share/terminfo/o/opennt-100
@@ -2758,6 +2795,7 @@ usr/share/terminfo/p/pccon
#usr/share/terminfo/p/pt505-24
#usr/share/terminfo/p/pty
usr/share/terminfo/p/putty
#usr/share/terminfo/p/putty+cursor
usr/share/terminfo/p/putty+fnkeys
usr/share/terminfo/p/putty+fnkeys+esc
usr/share/terminfo/p/putty+fnkeys+linux
@@ -2833,6 +2871,10 @@ usr/share/terminfo/p/putty-vt100
#usr/share/terminfo/r/regent40
#usr/share/terminfo/r/regent40+
#usr/share/terminfo/r/regent60
#usr/share/terminfo/r/report+da2
#usr/share/terminfo/r/report+version
#usr/share/terminfo/r/rio
#usr/share/terminfo/r/rio-direct
#usr/share/terminfo/r/rt6221
#usr/share/terminfo/r/rt6221-w
#usr/share/terminfo/r/rtpc
@@ -3319,6 +3361,8 @@ usr/share/terminfo/v/vt100
#usr/share/terminfo/v/vt100+enq
#usr/share/terminfo/v/vt100+fnkeys
#usr/share/terminfo/v/vt100+keypad
#usr/share/terminfo/v/vt100+noapp
#usr/share/terminfo/v/vt100+noapp+pc
#usr/share/terminfo/v/vt100+pfkeys
#usr/share/terminfo/v/vt100-am
#usr/share/terminfo/v/vt100-bm
@@ -3392,6 +3436,7 @@ usr/share/terminfo/v/vt220
#usr/share/terminfo/v/vt510pc
#usr/share/terminfo/v/vt510pcdos
usr/share/terminfo/v/vt52
#usr/share/terminfo/v/vt52+arrows
#usr/share/terminfo/v/vt52+keypad
#usr/share/terminfo/v/vt52-basic
#usr/share/terminfo/v/vt520
@@ -3413,6 +3458,8 @@ usr/share/terminfo/v/vte-256color
#usr/share/terminfo/v/vv100
usr/share/terminfo/v/vwmterm
#usr/share/terminfo/w
#usr/share/terminfo/w/wezterm
#usr/share/terminfo/w/winconsole
#usr/share/terminfo/w/wren
#usr/share/terminfo/w/wrenw
#usr/share/terminfo/w/wsiris
@@ -3732,6 +3779,8 @@ usr/share/terminfo/x/xterm
#usr/share/terminfo/x/xterm+alt1049
#usr/share/terminfo/x/xterm+alt47
#usr/share/terminfo/x/xterm+app
#usr/share/terminfo/x/xterm+app+pc
#usr/share/terminfo/x/xterm+decedit
#usr/share/terminfo/x/xterm+direct
#usr/share/terminfo/x/xterm+direct16
#usr/share/terminfo/x/xterm+direct2

View File

@@ -152,6 +152,10 @@ usr/bin/openssl
#usr/include/openssl/x509err.h
#usr/include/openssl/x509v3.h
#usr/include/openssl/x509v3err.h
#usr/lib/cmake
usr/lib/cmake/OpenSSL
usr/lib/cmake/OpenSSL/OpenSSLConfig.cmake
usr/lib/cmake/OpenSSL/OpenSSLConfigVersion.cmake
#usr/lib/engines-3
usr/lib/engines-3/afalg.so
usr/lib/engines-3/capi.so
@@ -769,6 +773,7 @@ usr/lib/ossl-modules/legacy.so
#usr/share/doc/openssl/html/man3/SSL_get_shared_sigalgs.html
#usr/share/doc/openssl/html/man3/SSL_get_stream_id.html
#usr/share/doc/openssl/html/man3/SSL_get_stream_read_state.html
#usr/share/doc/openssl/html/man3/SSL_get_value_uint.html
#usr/share/doc/openssl/html/man3/SSL_get_verify_result.html
#usr/share/doc/openssl/html/man3/SSL_get_version.html
#usr/share/doc/openssl/html/man3/SSL_group_to_name.html
@@ -781,6 +786,7 @@ usr/lib/ossl-modules/legacy.so
#usr/share/doc/openssl/html/man3/SSL_new.html
#usr/share/doc/openssl/html/man3/SSL_new_stream.html
#usr/share/doc/openssl/html/man3/SSL_pending.html
#usr/share/doc/openssl/html/man3/SSL_poll.html
#usr/share/doc/openssl/html/man3/SSL_read.html
#usr/share/doc/openssl/html/man3/SSL_read_early_data.html
#usr/share/doc/openssl/html/man3/SSL_rstate_string.html
@@ -994,6 +1000,7 @@ usr/lib/ossl-modules/legacy.so
#usr/share/doc/openssl/html/man7/openssl-core_names.h.html
#usr/share/doc/openssl/html/man7/openssl-env.html
#usr/share/doc/openssl/html/man7/openssl-glossary.html
#usr/share/doc/openssl/html/man7/openssl-qlog.html
#usr/share/doc/openssl/html/man7/openssl-quic.html
#usr/share/doc/openssl/html/man7/openssl-threads.html
#usr/share/doc/openssl/html/man7/openssl_user_macros.html
@@ -2421,6 +2428,7 @@ usr/lib/ossl-modules/legacy.so
#usr/share/man/man3/ERR_peek_last_error_func.3ossl
#usr/share/man/man3/ERR_peek_last_error_line.3ossl
#usr/share/man/man3/ERR_peek_last_error_line_data.3ossl
#usr/share/man/man3/ERR_pop.3ossl
#usr/share/man/man3/ERR_pop_to_mark.3ossl
#usr/share/man/man3/ERR_print_errors.3ossl
#usr/share/man/man3/ERR_print_errors_cb.3ossl
@@ -2589,6 +2597,7 @@ usr/lib/ossl-modules/legacy.so
#usr/share/man/man3/EVP_DigestSignInit.3ossl
#usr/share/man/man3/EVP_DigestSignInit_ex.3ossl
#usr/share/man/man3/EVP_DigestSignUpdate.3ossl
#usr/share/man/man3/EVP_DigestSqueeze.3ossl
#usr/share/man/man3/EVP_DigestUpdate.3ossl
#usr/share/man/man3/EVP_DigestVerify.3ossl
#usr/share/man/man3/EVP_DigestVerifyFinal.3ossl
@@ -3590,6 +3599,7 @@ usr/lib/ossl-modules/legacy.so
#usr/share/man/man3/OPENSSL_LH_delete.3ossl
#usr/share/man/man3/OPENSSL_LH_doall.3ossl
#usr/share/man/man3/OPENSSL_LH_doall_arg.3ossl
#usr/share/man/man3/OPENSSL_LH_doall_arg_thunk.3ossl
#usr/share/man/man3/OPENSSL_LH_error.3ossl
#usr/share/man/man3/OPENSSL_LH_flush.3ossl
#usr/share/man/man3/OPENSSL_LH_free.3ossl
@@ -3603,6 +3613,7 @@ usr/lib/ossl-modules/legacy.so
#usr/share/man/man3/OPENSSL_LH_num_items.3ossl
#usr/share/man/man3/OPENSSL_LH_retrieve.3ossl
#usr/share/man/man3/OPENSSL_LH_set_down_load.3ossl
#usr/share/man/man3/OPENSSL_LH_set_thunks.3ossl
#usr/share/man/man3/OPENSSL_LH_stats.3ossl
#usr/share/man/man3/OPENSSL_LH_stats_bio.3ossl
#usr/share/man/man3/OPENSSL_LINE.3ossl
@@ -3701,6 +3712,7 @@ usr/lib/ossl-modules/legacy.so
#usr/share/man/man3/OSSL_CMP_CR.3ossl
#usr/share/man/man3/OSSL_CMP_CTX_build_cert_chain.3ossl
#usr/share/man/man3/OSSL_CMP_CTX_free.3ossl
#usr/share/man/man3/OSSL_CMP_CTX_get0_geninfo_ITAVs.3ossl
#usr/share/man/man3/OSSL_CMP_CTX_get0_libctx.3ossl
#usr/share/man/man3/OSSL_CMP_CTX_get0_newCert.3ossl
#usr/share/man/man3/OSSL_CMP_CTX_get0_newPkey.3ossl
@@ -3765,6 +3777,7 @@ usr/lib/ossl-modules/legacy.so
#usr/share/man/man3/OSSL_CMP_CTX_set_transfer_cb_arg.3ossl
#usr/share/man/man3/OSSL_CMP_CTX_setup_CRM.3ossl
#usr/share/man/man3/OSSL_CMP_CTX_snprint_PKIStatus.3ossl
#usr/share/man/man3/OSSL_CMP_HDR_get0_geninfo_ITAVs.3ossl
#usr/share/man/man3/OSSL_CMP_HDR_get0_recipNonce.3ossl
#usr/share/man/man3/OSSL_CMP_HDR_get0_transactionID.3ossl
#usr/share/man/man3/OSSL_CMP_IR.3ossl
@@ -3772,10 +3785,12 @@ usr/lib/ossl-modules/legacy.so
#usr/share/man/man3/OSSL_CMP_ITAV_dup.3ossl
#usr/share/man/man3/OSSL_CMP_ITAV_free.3ossl
#usr/share/man/man3/OSSL_CMP_ITAV_get0_caCerts.3ossl
#usr/share/man/man3/OSSL_CMP_ITAV_get0_certProfile.3ossl
#usr/share/man/man3/OSSL_CMP_ITAV_get0_rootCaCert.3ossl
#usr/share/man/man3/OSSL_CMP_ITAV_get0_rootCaKeyUpdate.3ossl
#usr/share/man/man3/OSSL_CMP_ITAV_get0_type.3ossl
#usr/share/man/man3/OSSL_CMP_ITAV_get0_value.3ossl
#usr/share/man/man3/OSSL_CMP_ITAV_new0_certProfile.3ossl
#usr/share/man/man3/OSSL_CMP_ITAV_new_caCerts.3ossl
#usr/share/man/man3/OSSL_CMP_ITAV_new_rootCaCert.3ossl
#usr/share/man/man3/OSSL_CMP_ITAV_new_rootCaKeyUpdate.3ossl
@@ -3793,6 +3808,7 @@ usr/lib/ossl-modules/legacy.so
#usr/share/man/man3/OSSL_CMP_LOG_WARNING.3ossl
#usr/share/man/man3/OSSL_CMP_MSG_dup.3ossl
#usr/share/man/man3/OSSL_CMP_MSG_free.3ossl
#usr/share/man/man3/OSSL_CMP_MSG_get0_certreq_publickey.3ossl
#usr/share/man/man3/OSSL_CMP_MSG_get0_header.3ossl
#usr/share/man/man3/OSSL_CMP_MSG_get_bodytype.3ossl
#usr/share/man/man3/OSSL_CMP_MSG_http_perform.3ossl
@@ -3814,6 +3830,7 @@ usr/lib/ossl-modules/legacy.so
#usr/share/man/man3/OSSL_CMP_SRV_CTX_get0_cmp_ctx.3ossl
#usr/share/man/man3/OSSL_CMP_SRV_CTX_get0_custom_ctx.3ossl
#usr/share/man/man3/OSSL_CMP_SRV_CTX_init.3ossl
#usr/share/man/man3/OSSL_CMP_SRV_CTX_init_trans.3ossl
#usr/share/man/man3/OSSL_CMP_SRV_CTX_new.3ossl
#usr/share/man/man3/OSSL_CMP_SRV_CTX_set_accept_raverified.3ossl
#usr/share/man/man3/OSSL_CMP_SRV_CTX_set_accept_unprotected.3ossl
@@ -3821,6 +3838,8 @@ usr/lib/ossl-modules/legacy.so
#usr/share/man/man3/OSSL_CMP_SRV_CTX_set_send_unprotected_errors.3ossl
#usr/share/man/man3/OSSL_CMP_SRV_certConf_cb_t.3ossl
#usr/share/man/man3/OSSL_CMP_SRV_cert_request_cb_t.3ossl
#usr/share/man/man3/OSSL_CMP_SRV_clean_transaction_cb_t.3ossl
#usr/share/man/man3/OSSL_CMP_SRV_delayed_delivery_cb_t.3ossl
#usr/share/man/man3/OSSL_CMP_SRV_error_cb_t.3ossl
#usr/share/man/man3/OSSL_CMP_SRV_genm_cb_t.3ossl
#usr/share/man/man3/OSSL_CMP_SRV_pollReq_cb_t.3ossl
@@ -4044,6 +4063,7 @@ usr/lib/ossl-modules/legacy.so
#usr/share/man/man3/OSSL_HTTP_REQ_CTX_new.3ossl
#usr/share/man/man3/OSSL_HTTP_REQ_CTX_set1_req.3ossl
#usr/share/man/man3/OSSL_HTTP_REQ_CTX_set_expected.3ossl
#usr/share/man/man3/OSSL_HTTP_REQ_CTX_set_max_response_hdr_lines.3ossl
#usr/share/man/man3/OSSL_HTTP_REQ_CTX_set_max_response_length.3ossl
#usr/share/man/man3/OSSL_HTTP_REQ_CTX_set_request_line.3ossl
#usr/share/man/man3/OSSL_HTTP_adapt_proxy.3ossl
@@ -4187,6 +4207,27 @@ usr/lib/ossl-modules/legacy.so
#usr/share/man/man3/OSSL_PROVIDER_try_load_ex.3ossl
#usr/share/man/man3/OSSL_PROVIDER_unload.3ossl
#usr/share/man/man3/OSSL_PROVIDER_unquery_operation.3ossl
#usr/share/man/man3/OSSL_QUIC_ERR_AEAD_LIMIT_REACHED.3ossl
#usr/share/man/man3/OSSL_QUIC_ERR_APPLICATION_ERROR.3ossl
#usr/share/man/man3/OSSL_QUIC_ERR_CONNECTION_ID_LIMIT_ERROR.3ossl
#usr/share/man/man3/OSSL_QUIC_ERR_CONNECTION_REFUSED.3ossl
#usr/share/man/man3/OSSL_QUIC_ERR_CRYPTO_BUFFER_EXCEEDED.3ossl
#usr/share/man/man3/OSSL_QUIC_ERR_CRYPTO_ERR.3ossl
#usr/share/man/man3/OSSL_QUIC_ERR_CRYPTO_ERR_BEGIN.3ossl
#usr/share/man/man3/OSSL_QUIC_ERR_CRYPTO_ERR_END.3ossl
#usr/share/man/man3/OSSL_QUIC_ERR_FINAL_SIZE_ERROR.3ossl
#usr/share/man/man3/OSSL_QUIC_ERR_FLOW_CONTROL_ERROR.3ossl
#usr/share/man/man3/OSSL_QUIC_ERR_FRAME_ENCODING_ERROR.3ossl
#usr/share/man/man3/OSSL_QUIC_ERR_INTERNAL_ERROR.3ossl
#usr/share/man/man3/OSSL_QUIC_ERR_INVALID_TOKEN.3ossl
#usr/share/man/man3/OSSL_QUIC_ERR_KEY_UPDATE_ERROR.3ossl
#usr/share/man/man3/OSSL_QUIC_ERR_NO_ERROR.3ossl
#usr/share/man/man3/OSSL_QUIC_ERR_NO_VIABLE_PATH.3ossl
#usr/share/man/man3/OSSL_QUIC_ERR_PROTOCOL_VIOLATION.3ossl
#usr/share/man/man3/OSSL_QUIC_ERR_STREAM_LIMIT_ERROR.3ossl
#usr/share/man/man3/OSSL_QUIC_ERR_STREAM_STATE_ERROR.3ossl
#usr/share/man/man3/OSSL_QUIC_ERR_TRANSPORT_PARAMETER_ERROR.3ossl
#usr/share/man/man3/OSSL_QUIC_LOCAL_ERR_IDLE_TIMEOUT.3ossl
#usr/share/man/man3/OSSL_QUIC_client_method.3ossl
#usr/share/man/man3/OSSL_QUIC_client_thread_method.3ossl
#usr/share/man/man3/OSSL_SELF_TEST_free.3ossl
@@ -5145,6 +5186,29 @@ usr/lib/ossl-modules/legacy.so
#usr/share/man/man3/SSL_INCOMING_STREAM_POLICY_AUTO.3ossl
#usr/share/man/man3/SSL_INCOMING_STREAM_POLICY_REJECT.3ossl
#usr/share/man/man3/SSL_OP_BIT.3ossl
#usr/share/man/man3/SSL_POLL_EVENT_E.3ossl
#usr/share/man/man3/SSL_POLL_EVENT_EC.3ossl
#usr/share/man/man3/SSL_POLL_EVENT_ECD.3ossl
#usr/share/man/man3/SSL_POLL_EVENT_ER.3ossl
#usr/share/man/man3/SSL_POLL_EVENT_EW.3ossl
#usr/share/man/man3/SSL_POLL_EVENT_F.3ossl
#usr/share/man/man3/SSL_POLL_EVENT_I.3ossl
#usr/share/man/man3/SSL_POLL_EVENT_IS.3ossl
#usr/share/man/man3/SSL_POLL_EVENT_ISB.3ossl
#usr/share/man/man3/SSL_POLL_EVENT_ISE.3ossl
#usr/share/man/man3/SSL_POLL_EVENT_ISU.3ossl
#usr/share/man/man3/SSL_POLL_EVENT_NONE.3ossl
#usr/share/man/man3/SSL_POLL_EVENT_OS.3ossl
#usr/share/man/man3/SSL_POLL_EVENT_OSB.3ossl
#usr/share/man/man3/SSL_POLL_EVENT_OSE.3ossl
#usr/share/man/man3/SSL_POLL_EVENT_OSU.3ossl
#usr/share/man/man3/SSL_POLL_EVENT_R.3ossl
#usr/share/man/man3/SSL_POLL_EVENT_RE.3ossl
#usr/share/man/man3/SSL_POLL_EVENT_RW.3ossl
#usr/share/man/man3/SSL_POLL_EVENT_RWE.3ossl
#usr/share/man/man3/SSL_POLL_EVENT_W.3ossl
#usr/share/man/man3/SSL_POLL_EVENT_WE.3ossl
#usr/share/man/man3/SSL_POLL_FLAG_NO_HANDLE_EVENTS.3ossl
#usr/share/man/man3/SSL_SESSION_dup.3ossl
#usr/share/man/man3/SSL_SESSION_free.3ossl
#usr/share/man/man3/SSL_SESSION_get0_alpn_selected.3ossl
@@ -5166,6 +5230,7 @@ usr/lib/ossl-modules/legacy.so
#usr/share/man/man3/SSL_SESSION_get_protocol_version.3ossl
#usr/share/man/man3/SSL_SESSION_get_ticket_lifetime_hint.3ossl
#usr/share/man/man3/SSL_SESSION_get_time.3ossl
#usr/share/man/man3/SSL_SESSION_get_time_ex.3ossl
#usr/share/man/man3/SSL_SESSION_get_timeout.3ossl
#usr/share/man/man3/SSL_SESSION_has_ticket.3ossl
#usr/share/man/man3/SSL_SESSION_is_resumable.3ossl
@@ -5185,6 +5250,7 @@ usr/lib/ossl-modules/legacy.so
#usr/share/man/man3/SSL_SESSION_set_max_early_data.3ossl
#usr/share/man/man3/SSL_SESSION_set_protocol_version.3ossl
#usr/share/man/man3/SSL_SESSION_set_time.3ossl
#usr/share/man/man3/SSL_SESSION_set_time_ex.3ossl
#usr/share/man/man3/SSL_SESSION_set_timeout.3ossl
#usr/share/man/man3/SSL_SESSION_up_ref.3ossl
#usr/share/man/man3/SSL_STREAM_FLAG_ADVANCE.3ossl
@@ -5201,6 +5267,23 @@ usr/lib/ossl-modules/legacy.so
#usr/share/man/man3/SSL_STREAM_TYPE_NONE.3ossl
#usr/share/man/man3/SSL_STREAM_TYPE_READ.3ossl
#usr/share/man/man3/SSL_STREAM_TYPE_WRITE.3ossl
#usr/share/man/man3/SSL_VALUE_CLASS_FEATURE_NEGOTIATED.3ossl
#usr/share/man/man3/SSL_VALUE_CLASS_FEATURE_PEER_REQUEST.3ossl
#usr/share/man/man3/SSL_VALUE_CLASS_FEATURE_REQUEST.3ossl
#usr/share/man/man3/SSL_VALUE_CLASS_GENERIC.3ossl
#usr/share/man/man3/SSL_VALUE_EVENT_HANDLING_MODE.3ossl
#usr/share/man/man3/SSL_VALUE_EVENT_HANDLING_MODE_EXPLICIT.3ossl
#usr/share/man/man3/SSL_VALUE_EVENT_HANDLING_MODE_IMPLICIT.3ossl
#usr/share/man/man3/SSL_VALUE_EVENT_HANDLING_MODE_INHERIT.3ossl
#usr/share/man/man3/SSL_VALUE_QUIC_IDLE_TIMEOUT.3ossl
#usr/share/man/man3/SSL_VALUE_QUIC_STREAM_BIDI_LOCAL_AVAIL.3ossl
#usr/share/man/man3/SSL_VALUE_QUIC_STREAM_BIDI_REMOTE_AVAIL.3ossl
#usr/share/man/man3/SSL_VALUE_QUIC_STREAM_UNI_LOCAL_AVAIL.3ossl
#usr/share/man/man3/SSL_VALUE_QUIC_STREAM_UNI_REMOTE_AVAIL.3ossl
#usr/share/man/man3/SSL_VALUE_STREAM_WRITE_BUF_AVAIL.3ossl
#usr/share/man/man3/SSL_VALUE_STREAM_WRITE_BUF_SIZE.3ossl
#usr/share/man/man3/SSL_VALUE_STREAM_WRITE_BUF_USED.3ossl
#usr/share/man/man3/SSL_WRITE_FLAG_CONCLUDE.3ossl
#usr/share/man/man3/SSL_accept.3ossl
#usr/share/man/man3/SSL_accept_stream.3ossl
#usr/share/man/man3/SSL_add0_chain_cert.3ossl
@@ -5312,12 +5395,17 @@ usr/lib/ossl-modules/legacy.so
#usr/share/man/man3/SSL_get_default_timeout.3ossl
#usr/share/man/man3/SSL_get_early_data_status.3ossl
#usr/share/man/man3/SSL_get_error.3ossl
#usr/share/man/man3/SSL_get_event_handling_mode.3ossl
#usr/share/man/man3/SSL_get_event_timeout.3ossl
#usr/share/man/man3/SSL_get_ex_data.3ossl
#usr/share/man/man3/SSL_get_ex_data_X509_STORE_CTX_idx.3ossl
#usr/share/man/man3/SSL_get_ex_new_index.3ossl
#usr/share/man/man3/SSL_get_extms_support.3ossl
#usr/share/man/man3/SSL_get_fd.3ossl
#usr/share/man/man3/SSL_get_feature_negotiated_uint.3ossl
#usr/share/man/man3/SSL_get_feature_peer_request_uint.3ossl
#usr/share/man/man3/SSL_get_feature_request_uint.3ossl
#usr/share/man/man3/SSL_get_generic_value_uint.3ossl
#usr/share/man/man3/SSL_get_handshake_rtt.3ossl
#usr/share/man/man3/SSL_get_info_callback.3ossl
#usr/share/man/man3/SSL_get_key_update_type.3ossl
@@ -5340,6 +5428,10 @@ usr/lib/ossl-modules/legacy.so
#usr/share/man/man3/SSL_get_privatekey.3ossl
#usr/share/man/man3/SSL_get_psk_identity.3ossl
#usr/share/man/man3/SSL_get_psk_identity_hint.3ossl
#usr/share/man/man3/SSL_get_quic_stream_bidi_local_avail.3ossl
#usr/share/man/man3/SSL_get_quic_stream_bidi_remote_avail.3ossl
#usr/share/man/man3/SSL_get_quic_stream_uni_local_avail.3ossl
#usr/share/man/man3/SSL_get_quic_stream_uni_remote_avail.3ossl
#usr/share/man/man3/SSL_get_quiet_shutdown.3ossl
#usr/share/man/man3/SSL_get_rbio.3ossl
#usr/share/man/man3/SSL_get_read_ahead.3ossl
@@ -5375,6 +5467,9 @@ usr/lib/ossl-modules/legacy.so
#usr/share/man/man3/SSL_get_stream_read_error_code.3ossl
#usr/share/man/man3/SSL_get_stream_read_state.3ossl
#usr/share/man/man3/SSL_get_stream_type.3ossl
#usr/share/man/man3/SSL_get_stream_write_buf_avail.3ossl
#usr/share/man/man3/SSL_get_stream_write_buf_size.3ossl
#usr/share/man/man3/SSL_get_stream_write_buf_used.3ossl
#usr/share/man/man3/SSL_get_stream_write_error_code.3ossl
#usr/share/man/man3/SSL_get_stream_write_state.3ossl
#usr/share/man/man3/SSL_get_time.3ossl
@@ -5382,6 +5477,7 @@ usr/lib/ossl-modules/legacy.so
#usr/share/man/man3/SSL_get_tlsext_status_ocsp_resp.3ossl
#usr/share/man/man3/SSL_get_tlsext_status_type.3ossl
#usr/share/man/man3/SSL_get_tmp_key.3ossl
#usr/share/man/man3/SSL_get_value_uint.3ossl
#usr/share/man/man3/SSL_get_verify_callback.3ossl
#usr/share/man/man3/SSL_get_verify_depth.3ossl
#usr/share/man/man3/SSL_get_verify_mode.3ossl
@@ -5419,6 +5515,7 @@ usr/lib/ossl-modules/legacy.so
#usr/share/man/man3/SSL_peek.3ossl
#usr/share/man/man3/SSL_peek_ex.3ossl
#usr/share/man/man3/SSL_pending.3ossl
#usr/share/man/man3/SSL_poll.3ossl
#usr/share/man/man3/SSL_psk_client_cb_func.3ossl
#usr/share/man/man3/SSL_psk_find_session_cb_func.3ossl
#usr/share/man/man3/SSL_psk_server_cb_func.3ossl
@@ -5483,9 +5580,12 @@ usr/lib/ossl-modules/legacy.so
#usr/share/man/man3/SSL_set_default_stream_mode.3ossl
#usr/share/man/man3/SSL_set_dh_auto.3ossl
#usr/share/man/man3/SSL_set_ecdh_auto.3ossl
#usr/share/man/man3/SSL_set_event_handling_mode.3ossl
#usr/share/man/man3/SSL_set_ex_data.3ossl
#usr/share/man/man3/SSL_set_fd.3ossl
#usr/share/man/man3/SSL_set_feature_request_uint.3ossl
#usr/share/man/man3/SSL_set_generate_session_id.3ossl
#usr/share/man/man3/SSL_set_generic_value_uint.3ossl
#usr/share/man/man3/SSL_set_hostflags.3ossl
#usr/share/man/man3/SSL_set_incoming_stream_policy.3ossl
#usr/share/man/man3/SSL_set_info_callback.3ossl
@@ -5534,6 +5634,7 @@ usr/lib/ossl-modules/legacy.so
#usr/share/man/man3/SSL_set_tmp_dh_callback.3ossl
#usr/share/man/man3/SSL_set_tmp_ecdh.3ossl
#usr/share/man/man3/SSL_set_trust.3ossl
#usr/share/man/man3/SSL_set_value_uint.3ossl
#usr/share/man/man3/SSL_set_verify.3ossl
#usr/share/man/man3/SSL_set_verify_depth.3ossl
#usr/share/man/man3/SSL_set_verify_result.3ossl
@@ -5575,6 +5676,7 @@ usr/lib/ossl-modules/legacy.so
#usr/share/man/man3/SSL_write.3ossl
#usr/share/man/man3/SSL_write_early_data.3ossl
#usr/share/man/man3/SSL_write_ex.3ossl
#usr/share/man/man3/SSL_write_ex2.3ossl
#usr/share/man/man3/SSLv23_client_method.3ossl
#usr/share/man/man3/SSLv23_method.3ossl
#usr/share/man/man3/SSLv23_server_method.3ossl
@@ -6011,6 +6113,7 @@ usr/lib/ossl-modules/legacy.so
#usr/share/man/man3/X509_STORE_get0_objects.3ossl
#usr/share/man/man3/X509_STORE_get0_param.3ossl
#usr/share/man/man3/X509_STORE_get1_all_certs.3ossl
#usr/share/man/man3/X509_STORE_get1_objects.3ossl
#usr/share/man/man3/X509_STORE_get_cert_crl.3ossl
#usr/share/man/man3/X509_STORE_get_check_crl.3ossl
#usr/share/man/man3/X509_STORE_get_check_issued.3ossl
@@ -6857,6 +6960,7 @@ usr/lib/ossl-modules/legacy.so
#usr/share/man/man7/openssl-core_names.h.7ossl
#usr/share/man/man7/openssl-env.7ossl
#usr/share/man/man7/openssl-glossary.7ossl
#usr/share/man/man7/openssl-qlog.7ossl
#usr/share/man/man7/openssl-quic.7ossl
#usr/share/man/man7/openssl-threads.7ossl
#usr/share/man/man7/openssl_user_macros.7ossl

View File

@@ -6,15 +6,15 @@
#usr/lib/libpcre2-16.la
#usr/lib/libpcre2-16.so
usr/lib/libpcre2-16.so.0
usr/lib/libpcre2-16.so.0.12.0
usr/lib/libpcre2-16.so.0.13.0
#usr/lib/libpcre2-32.la
#usr/lib/libpcre2-32.so
usr/lib/libpcre2-32.so.0
usr/lib/libpcre2-32.so.0.12.0
usr/lib/libpcre2-32.so.0.13.0
#usr/lib/libpcre2-8.la
#usr/lib/libpcre2-8.so
usr/lib/libpcre2-8.so.0
usr/lib/libpcre2-8.so.0.12.0
usr/lib/libpcre2-8.so.0.13.0
#usr/lib/libpcre2-posix.la
#usr/lib/libpcre2-posix.so
usr/lib/libpcre2-posix.so.3
@@ -23,117 +23,118 @@ usr/lib/libpcre2-posix.so.3.0.5
#usr/lib/pkgconfig/libpcre2-32.pc
#usr/lib/pkgconfig/libpcre2-8.pc
#usr/lib/pkgconfig/libpcre2-posix.pc
#usr/share/doc/pcre-pcre2-10.43
#usr/share/doc/pcre-pcre2-10.43/AUTHORS
#usr/share/doc/pcre-pcre2-10.43/COPYING
#usr/share/doc/pcre-pcre2-10.43/ChangeLog
#usr/share/doc/pcre-pcre2-10.43/LICENCE
#usr/share/doc/pcre-pcre2-10.43/NEWS
#usr/share/doc/pcre-pcre2-10.43/README
#usr/share/doc/pcre-pcre2-10.43/html
#usr/share/doc/pcre-pcre2-10.43/html/NON-AUTOTOOLS-BUILD.txt
#usr/share/doc/pcre-pcre2-10.43/html/README.txt
#usr/share/doc/pcre-pcre2-10.43/html/index.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2-config.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_callout_enumerate.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_code_copy.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_code_copy_with_tables.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_code_free.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_compile.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_compile_context_copy.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_compile_context_create.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_compile_context_free.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_config.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_convert_context_copy.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_convert_context_create.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_convert_context_free.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_converted_pattern_free.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_dfa_match.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_general_context_copy.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_general_context_create.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_general_context_free.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_get_error_message.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_get_mark.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_get_match_data_heapframes_size.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_get_match_data_size.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_get_ovector_count.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_get_ovector_pointer.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_get_startchar.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_jit_compile.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_jit_free_unused_memory.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_jit_match.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_jit_stack_assign.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_jit_stack_create.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_jit_stack_free.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_maketables.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_maketables_free.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_match.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_match_context_copy.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_match_context_create.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_match_context_free.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_match_data_create.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_match_data_create_from_pattern.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_match_data_free.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_pattern_convert.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_pattern_info.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_serialize_decode.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_serialize_encode.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_serialize_free.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_serialize_get_number_of_codes.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_set_bsr.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_set_callout.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_set_character_tables.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_set_compile_extra_options.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_set_compile_recursion_guard.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_set_depth_limit.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_set_glob_escape.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_set_glob_separator.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_set_heap_limit.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_set_match_limit.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_set_max_pattern_length.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_set_max_varlookbehind.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_set_newline.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_set_offset_limit.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_set_parens_nest_limit.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_set_recursion_limit.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_set_recursion_memory_management.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_set_substitute_callout.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_substitute.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_substring_copy_byname.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_substring_copy_bynumber.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_substring_free.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_substring_get_byname.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_substring_get_bynumber.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_substring_length_byname.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_substring_length_bynumber.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_substring_list_free.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_substring_list_get.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_substring_nametable_scan.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2_substring_number_from_name.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2api.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2build.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2callout.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2compat.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2convert.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2demo.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2grep.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2jit.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2limits.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2matching.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2partial.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2pattern.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2perform.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2posix.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2sample.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2serialize.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2syntax.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2test.html
#usr/share/doc/pcre-pcre2-10.43/html/pcre2unicode.html
#usr/share/doc/pcre-pcre2-10.43/pcre2-config.txt
#usr/share/doc/pcre-pcre2-10.43/pcre2.txt
#usr/share/doc/pcre-pcre2-10.43/pcre2grep.txt
#usr/share/doc/pcre-pcre2-10.43/pcre2test.txt
#usr/share/doc/pcre-pcre2-10.44
#usr/share/doc/pcre-pcre2-10.44/AUTHORS
#usr/share/doc/pcre-pcre2-10.44/COPYING
#usr/share/doc/pcre-pcre2-10.44/ChangeLog
#usr/share/doc/pcre-pcre2-10.44/LICENCE
#usr/share/doc/pcre-pcre2-10.44/NEWS
#usr/share/doc/pcre-pcre2-10.44/README
#usr/share/doc/pcre-pcre2-10.44/html
#usr/share/doc/pcre-pcre2-10.44/html/NON-AUTOTOOLS-BUILD.txt
#usr/share/doc/pcre-pcre2-10.44/html/README.txt
#usr/share/doc/pcre-pcre2-10.44/html/index.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2-config.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_callout_enumerate.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_code_copy.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_code_copy_with_tables.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_code_free.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_compile.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_compile_context_copy.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_compile_context_create.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_compile_context_free.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_config.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_convert_context_copy.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_convert_context_create.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_convert_context_free.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_converted_pattern_free.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_dfa_match.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_general_context_copy.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_general_context_create.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_general_context_free.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_get_error_message.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_get_mark.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_get_match_data_heapframes_size.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_get_match_data_size.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_get_ovector_count.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_get_ovector_pointer.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_get_startchar.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_jit_compile.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_jit_free_unused_memory.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_jit_match.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_jit_stack_assign.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_jit_stack_create.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_jit_stack_free.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_maketables.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_maketables_free.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_match.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_match_context_copy.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_match_context_create.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_match_context_free.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_match_data_create.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_match_data_create_from_pattern.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_match_data_free.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_pattern_convert.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_pattern_info.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_serialize_decode.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_serialize_encode.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_serialize_free.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_serialize_get_number_of_codes.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_set_bsr.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_set_callout.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_set_character_tables.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_set_compile_extra_options.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_set_compile_recursion_guard.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_set_depth_limit.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_set_glob_escape.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_set_glob_separator.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_set_heap_limit.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_set_match_limit.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_set_max_pattern_compiled_length.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_set_max_pattern_length.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_set_max_varlookbehind.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_set_newline.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_set_offset_limit.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_set_parens_nest_limit.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_set_recursion_limit.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_set_recursion_memory_management.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_set_substitute_callout.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_substitute.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_substring_copy_byname.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_substring_copy_bynumber.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_substring_free.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_substring_get_byname.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_substring_get_bynumber.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_substring_length_byname.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_substring_length_bynumber.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_substring_list_free.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_substring_list_get.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_substring_nametable_scan.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2_substring_number_from_name.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2api.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2build.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2callout.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2compat.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2convert.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2demo.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2grep.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2jit.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2limits.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2matching.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2partial.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2pattern.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2perform.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2posix.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2sample.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2serialize.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2syntax.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2test.html
#usr/share/doc/pcre-pcre2-10.44/html/pcre2unicode.html
#usr/share/doc/pcre-pcre2-10.44/pcre2-config.txt
#usr/share/doc/pcre-pcre2-10.44/pcre2.txt
#usr/share/doc/pcre-pcre2-10.44/pcre2grep.txt
#usr/share/doc/pcre-pcre2-10.44/pcre2test.txt
#usr/share/man/man1/pcre2-config.1
#usr/share/man/man1/pcre2grep.1
#usr/share/man/man1/pcre2test.1
@@ -193,6 +194,7 @@ usr/lib/libpcre2-posix.so.3.0.5
#usr/share/man/man3/pcre2_set_glob_separator.3
#usr/share/man/man3/pcre2_set_heap_limit.3
#usr/share/man/man3/pcre2_set_match_limit.3
#usr/share/man/man3/pcre2_set_max_pattern_compiled_length.3
#usr/share/man/man3/pcre2_set_max_pattern_length.3
#usr/share/man/man3/pcre2_set_max_varlookbehind.3
#usr/share/man/man3/pcre2_set_newline.3

View File

@@ -43,6 +43,7 @@ usr/bin/pdfunite
#usr/include/poppler/GfxState.h
#usr/include/poppler/GfxState_helpers.h
#usr/include/poppler/GlobalParams.h
#usr/include/poppler/HashAlgorithm.h
#usr/include/poppler/Hints.h
#usr/include/poppler/JArithmeticDecoder.h
#usr/include/poppler/JBIG2Stream.h
@@ -74,6 +75,7 @@ usr/bin/pdfunite
#usr/include/poppler/ProfileData.h
#usr/include/poppler/Rendition.h
#usr/include/poppler/SecurityHandler.h
#usr/include/poppler/SignatureInfo.h
#usr/include/poppler/Sound.h
#usr/include/poppler/SplashOutputDev.h
#usr/include/poppler/Stream-CCITT.h
@@ -167,14 +169,14 @@ usr/bin/pdfunite
#usr/include/poppler/splash/SplashXPath.h
#usr/include/poppler/splash/SplashXPathScanner.h
#usr/lib/libpoppler-cpp.so
usr/lib/libpoppler-cpp.so.0
usr/lib/libpoppler-cpp.so.0.11.0
usr/lib/libpoppler-cpp.so.1
usr/lib/libpoppler-cpp.so.1.0.0
#usr/lib/libpoppler-glib.so
usr/lib/libpoppler-glib.so.8
usr/lib/libpoppler-glib.so.8.26.0
#usr/lib/libpoppler.so
usr/lib/libpoppler.so.135
usr/lib/libpoppler.so.135.0.0
usr/lib/libpoppler.so.140
usr/lib/libpoppler.so.140.0.0
#usr/lib/pkgconfig/poppler-cpp.pc
#usr/lib/pkgconfig/poppler-glib.pc
#usr/lib/pkgconfig/poppler.pc

File diff suppressed because it is too large Load Diff

View File

@@ -1 +1 @@
boot/initramfs-KVER-ipfire.img
boot/initramfs-KVER.img

View File

@@ -133,8 +133,6 @@ usr/local/bin/update-location-database
usr/sbin/openvpn-metrics
#usr/share
#usr/share/doc
#usr/share/doc/licenses
usr/share/doc/licenses/GPLv3
#usr/share/info
#usr/share/locale
#usr/share/man

View File

@@ -20,104 +20,104 @@ usr/lib/perl5/site_perl/5.36.0/xxxMACHINExxx-linux-thread-multi/RRDs.pm
#usr/lib/perl5/site_perl/5.36.0/xxxMACHINExxx-linux-thread-multi/auto/RRDs/.packlist
usr/lib/perl5/site_perl/5.36.0/xxxMACHINExxx-linux-thread-multi/auto/RRDs/RRDs.so
#usr/lib/pkgconfig/librrd.pc
#usr/share/doc/rrdtool-1.8.0
#usr/share/doc/rrdtool-1.8.0/html
#usr/share/doc/rrdtool-1.8.0/html/RRDp.html
#usr/share/doc/rrdtool-1.8.0/html/RRDs.html
#usr/share/doc/rrdtool-1.8.0/html/bin_dec_hex.html
#usr/share/doc/rrdtool-1.8.0/html/cdeftutorial.html
#usr/share/doc/rrdtool-1.8.0/html/index.html
#usr/share/doc/rrdtool-1.8.0/html/librrd.html
#usr/share/doc/rrdtool-1.8.0/html/rpntutorial.html
#usr/share/doc/rrdtool-1.8.0/html/rrd-beginners.html
#usr/share/doc/rrdtool-1.8.0/html/rrd_pdpcalc.html
#usr/share/doc/rrdtool-1.8.0/html/rrdbuild.html
#usr/share/doc/rrdtool-1.8.0/html/rrdcached.html
#usr/share/doc/rrdtool-1.8.0/html/rrdcgi.html
#usr/share/doc/rrdtool-1.8.0/html/rrdcreate.html
#usr/share/doc/rrdtool-1.8.0/html/rrddump.html
#usr/share/doc/rrdtool-1.8.0/html/rrdfetch.html
#usr/share/doc/rrdtool-1.8.0/html/rrdfirst.html
#usr/share/doc/rrdtool-1.8.0/html/rrdflushcached.html
#usr/share/doc/rrdtool-1.8.0/html/rrdgraph.html
#usr/share/doc/rrdtool-1.8.0/html/rrdgraph_data.html
#usr/share/doc/rrdtool-1.8.0/html/rrdgraph_examples.html
#usr/share/doc/rrdtool-1.8.0/html/rrdgraph_graph.html
#usr/share/doc/rrdtool-1.8.0/html/rrdgraph_rpn.html
#usr/share/doc/rrdtool-1.8.0/html/rrdinfo.html
#usr/share/doc/rrdtool-1.8.0/html/rrdlast.html
#usr/share/doc/rrdtool-1.8.0/html/rrdlastupdate.html
#usr/share/doc/rrdtool-1.8.0/html/rrdlist.html
#usr/share/doc/rrdtool-1.8.0/html/rrdresize.html
#usr/share/doc/rrdtool-1.8.0/html/rrdrestore.html
#usr/share/doc/rrdtool-1.8.0/html/rrdthreads.html
#usr/share/doc/rrdtool-1.8.0/html/rrdtool.html
#usr/share/doc/rrdtool-1.8.0/html/rrdtune.html
#usr/share/doc/rrdtool-1.8.0/html/rrdtutorial.html
#usr/share/doc/rrdtool-1.8.0/html/rrdupdate.html
#usr/share/doc/rrdtool-1.8.0/html/rrdxport.html
#usr/share/doc/rrdtool-1.8.0/txt
#usr/share/doc/rrdtool-1.8.0/txt/bin_dec_hex.pod
#usr/share/doc/rrdtool-1.8.0/txt/bin_dec_hex.txt
#usr/share/doc/rrdtool-1.8.0/txt/cdeftutorial.pod
#usr/share/doc/rrdtool-1.8.0/txt/cdeftutorial.txt
#usr/share/doc/rrdtool-1.8.0/txt/librrd.txt
#usr/share/doc/rrdtool-1.8.0/txt/rpntutorial.pod
#usr/share/doc/rrdtool-1.8.0/txt/rpntutorial.txt
#usr/share/doc/rrdtool-1.8.0/txt/rrd-beginners.pod
#usr/share/doc/rrdtool-1.8.0/txt/rrd-beginners.txt
#usr/share/doc/rrdtool-1.8.0/txt/rrd_pdpcalc.pod
#usr/share/doc/rrdtool-1.8.0/txt/rrd_pdpcalc.txt
#usr/share/doc/rrdtool-1.8.0/txt/rrdbuild.pod
#usr/share/doc/rrdtool-1.8.0/txt/rrdbuild.txt
#usr/share/doc/rrdtool-1.8.0/txt/rrdcached.pod
#usr/share/doc/rrdtool-1.8.0/txt/rrdcached.txt
#usr/share/doc/rrdtool-1.8.0/txt/rrdcgi.pod
#usr/share/doc/rrdtool-1.8.0/txt/rrdcgi.txt
#usr/share/doc/rrdtool-1.8.0/txt/rrdcreate.pod
#usr/share/doc/rrdtool-1.8.0/txt/rrdcreate.txt
#usr/share/doc/rrdtool-1.8.0/txt/rrddump.pod
#usr/share/doc/rrdtool-1.8.0/txt/rrddump.txt
#usr/share/doc/rrdtool-1.8.0/txt/rrdfetch.pod
#usr/share/doc/rrdtool-1.8.0/txt/rrdfetch.txt
#usr/share/doc/rrdtool-1.8.0/txt/rrdfirst.pod
#usr/share/doc/rrdtool-1.8.0/txt/rrdfirst.txt
#usr/share/doc/rrdtool-1.8.0/txt/rrdflushcached.pod
#usr/share/doc/rrdtool-1.8.0/txt/rrdflushcached.txt
#usr/share/doc/rrdtool-1.8.0/txt/rrdgraph.pod
#usr/share/doc/rrdtool-1.8.0/txt/rrdgraph.txt
#usr/share/doc/rrdtool-1.8.0/txt/rrdgraph_data.pod
#usr/share/doc/rrdtool-1.8.0/txt/rrdgraph_data.txt
#usr/share/doc/rrdtool-1.8.0/txt/rrdgraph_examples.pod
#usr/share/doc/rrdtool-1.8.0/txt/rrdgraph_examples.txt
#usr/share/doc/rrdtool-1.8.0/txt/rrdgraph_graph.pod
#usr/share/doc/rrdtool-1.8.0/txt/rrdgraph_graph.txt
#usr/share/doc/rrdtool-1.8.0/txt/rrdgraph_rpn.pod
#usr/share/doc/rrdtool-1.8.0/txt/rrdgraph_rpn.txt
#usr/share/doc/rrdtool-1.8.0/txt/rrdinfo.pod
#usr/share/doc/rrdtool-1.8.0/txt/rrdinfo.txt
#usr/share/doc/rrdtool-1.8.0/txt/rrdlast.pod
#usr/share/doc/rrdtool-1.8.0/txt/rrdlast.txt
#usr/share/doc/rrdtool-1.8.0/txt/rrdlastupdate.pod
#usr/share/doc/rrdtool-1.8.0/txt/rrdlastupdate.txt
#usr/share/doc/rrdtool-1.8.0/txt/rrdlist.pod
#usr/share/doc/rrdtool-1.8.0/txt/rrdlist.txt
#usr/share/doc/rrdtool-1.8.0/txt/rrdresize.pod
#usr/share/doc/rrdtool-1.8.0/txt/rrdresize.txt
#usr/share/doc/rrdtool-1.8.0/txt/rrdrestore.pod
#usr/share/doc/rrdtool-1.8.0/txt/rrdrestore.txt
#usr/share/doc/rrdtool-1.8.0/txt/rrdthreads.pod
#usr/share/doc/rrdtool-1.8.0/txt/rrdthreads.txt
#usr/share/doc/rrdtool-1.8.0/txt/rrdtool.pod
#usr/share/doc/rrdtool-1.8.0/txt/rrdtool.txt
#usr/share/doc/rrdtool-1.8.0/txt/rrdtune.pod
#usr/share/doc/rrdtool-1.8.0/txt/rrdtune.txt
#usr/share/doc/rrdtool-1.8.0/txt/rrdtutorial.pod
#usr/share/doc/rrdtool-1.8.0/txt/rrdtutorial.txt
#usr/share/doc/rrdtool-1.8.0/txt/rrdupdate.pod
#usr/share/doc/rrdtool-1.8.0/txt/rrdupdate.txt
#usr/share/doc/rrdtool-1.8.0/txt/rrdxport.pod
#usr/share/doc/rrdtool-1.8.0/txt/rrdxport.txt
#usr/share/doc/rrdtool-1.9.0
#usr/share/doc/rrdtool-1.9.0/html
#usr/share/doc/rrdtool-1.9.0/html/RRDp.html
#usr/share/doc/rrdtool-1.9.0/html/RRDs.html
#usr/share/doc/rrdtool-1.9.0/html/bin_dec_hex.html
#usr/share/doc/rrdtool-1.9.0/html/cdeftutorial.html
#usr/share/doc/rrdtool-1.9.0/html/index.html
#usr/share/doc/rrdtool-1.9.0/html/librrd.html
#usr/share/doc/rrdtool-1.9.0/html/rpntutorial.html
#usr/share/doc/rrdtool-1.9.0/html/rrd-beginners.html
#usr/share/doc/rrdtool-1.9.0/html/rrd_pdpcalc.html
#usr/share/doc/rrdtool-1.9.0/html/rrdbuild.html
#usr/share/doc/rrdtool-1.9.0/html/rrdcached.html
#usr/share/doc/rrdtool-1.9.0/html/rrdcgi.html
#usr/share/doc/rrdtool-1.9.0/html/rrdcreate.html
#usr/share/doc/rrdtool-1.9.0/html/rrddump.html
#usr/share/doc/rrdtool-1.9.0/html/rrdfetch.html
#usr/share/doc/rrdtool-1.9.0/html/rrdfirst.html
#usr/share/doc/rrdtool-1.9.0/html/rrdflushcached.html
#usr/share/doc/rrdtool-1.9.0/html/rrdgraph.html
#usr/share/doc/rrdtool-1.9.0/html/rrdgraph_data.html
#usr/share/doc/rrdtool-1.9.0/html/rrdgraph_examples.html
#usr/share/doc/rrdtool-1.9.0/html/rrdgraph_graph.html
#usr/share/doc/rrdtool-1.9.0/html/rrdgraph_rpn.html
#usr/share/doc/rrdtool-1.9.0/html/rrdinfo.html
#usr/share/doc/rrdtool-1.9.0/html/rrdlast.html
#usr/share/doc/rrdtool-1.9.0/html/rrdlastupdate.html
#usr/share/doc/rrdtool-1.9.0/html/rrdlist.html
#usr/share/doc/rrdtool-1.9.0/html/rrdresize.html
#usr/share/doc/rrdtool-1.9.0/html/rrdrestore.html
#usr/share/doc/rrdtool-1.9.0/html/rrdthreads.html
#usr/share/doc/rrdtool-1.9.0/html/rrdtool.html
#usr/share/doc/rrdtool-1.9.0/html/rrdtune.html
#usr/share/doc/rrdtool-1.9.0/html/rrdtutorial.html
#usr/share/doc/rrdtool-1.9.0/html/rrdupdate.html
#usr/share/doc/rrdtool-1.9.0/html/rrdxport.html
#usr/share/doc/rrdtool-1.9.0/txt
#usr/share/doc/rrdtool-1.9.0/txt/bin_dec_hex.pod
#usr/share/doc/rrdtool-1.9.0/txt/bin_dec_hex.txt
#usr/share/doc/rrdtool-1.9.0/txt/cdeftutorial.pod
#usr/share/doc/rrdtool-1.9.0/txt/cdeftutorial.txt
#usr/share/doc/rrdtool-1.9.0/txt/librrd.txt
#usr/share/doc/rrdtool-1.9.0/txt/rpntutorial.pod
#usr/share/doc/rrdtool-1.9.0/txt/rpntutorial.txt
#usr/share/doc/rrdtool-1.9.0/txt/rrd-beginners.pod
#usr/share/doc/rrdtool-1.9.0/txt/rrd-beginners.txt
#usr/share/doc/rrdtool-1.9.0/txt/rrd_pdpcalc.pod
#usr/share/doc/rrdtool-1.9.0/txt/rrd_pdpcalc.txt
#usr/share/doc/rrdtool-1.9.0/txt/rrdbuild.pod
#usr/share/doc/rrdtool-1.9.0/txt/rrdbuild.txt
#usr/share/doc/rrdtool-1.9.0/txt/rrdcached.pod
#usr/share/doc/rrdtool-1.9.0/txt/rrdcached.txt
#usr/share/doc/rrdtool-1.9.0/txt/rrdcgi.pod
#usr/share/doc/rrdtool-1.9.0/txt/rrdcgi.txt
#usr/share/doc/rrdtool-1.9.0/txt/rrdcreate.pod
#usr/share/doc/rrdtool-1.9.0/txt/rrdcreate.txt
#usr/share/doc/rrdtool-1.9.0/txt/rrddump.pod
#usr/share/doc/rrdtool-1.9.0/txt/rrddump.txt
#usr/share/doc/rrdtool-1.9.0/txt/rrdfetch.pod
#usr/share/doc/rrdtool-1.9.0/txt/rrdfetch.txt
#usr/share/doc/rrdtool-1.9.0/txt/rrdfirst.pod
#usr/share/doc/rrdtool-1.9.0/txt/rrdfirst.txt
#usr/share/doc/rrdtool-1.9.0/txt/rrdflushcached.pod
#usr/share/doc/rrdtool-1.9.0/txt/rrdflushcached.txt
#usr/share/doc/rrdtool-1.9.0/txt/rrdgraph.pod
#usr/share/doc/rrdtool-1.9.0/txt/rrdgraph.txt
#usr/share/doc/rrdtool-1.9.0/txt/rrdgraph_data.pod
#usr/share/doc/rrdtool-1.9.0/txt/rrdgraph_data.txt
#usr/share/doc/rrdtool-1.9.0/txt/rrdgraph_examples.pod
#usr/share/doc/rrdtool-1.9.0/txt/rrdgraph_examples.txt
#usr/share/doc/rrdtool-1.9.0/txt/rrdgraph_graph.pod
#usr/share/doc/rrdtool-1.9.0/txt/rrdgraph_graph.txt
#usr/share/doc/rrdtool-1.9.0/txt/rrdgraph_rpn.pod
#usr/share/doc/rrdtool-1.9.0/txt/rrdgraph_rpn.txt
#usr/share/doc/rrdtool-1.9.0/txt/rrdinfo.pod
#usr/share/doc/rrdtool-1.9.0/txt/rrdinfo.txt
#usr/share/doc/rrdtool-1.9.0/txt/rrdlast.pod
#usr/share/doc/rrdtool-1.9.0/txt/rrdlast.txt
#usr/share/doc/rrdtool-1.9.0/txt/rrdlastupdate.pod
#usr/share/doc/rrdtool-1.9.0/txt/rrdlastupdate.txt
#usr/share/doc/rrdtool-1.9.0/txt/rrdlist.pod
#usr/share/doc/rrdtool-1.9.0/txt/rrdlist.txt
#usr/share/doc/rrdtool-1.9.0/txt/rrdresize.pod
#usr/share/doc/rrdtool-1.9.0/txt/rrdresize.txt
#usr/share/doc/rrdtool-1.9.0/txt/rrdrestore.pod
#usr/share/doc/rrdtool-1.9.0/txt/rrdrestore.txt
#usr/share/doc/rrdtool-1.9.0/txt/rrdthreads.pod
#usr/share/doc/rrdtool-1.9.0/txt/rrdthreads.txt
#usr/share/doc/rrdtool-1.9.0/txt/rrdtool.pod
#usr/share/doc/rrdtool-1.9.0/txt/rrdtool.txt
#usr/share/doc/rrdtool-1.9.0/txt/rrdtune.pod
#usr/share/doc/rrdtool-1.9.0/txt/rrdtune.txt
#usr/share/doc/rrdtool-1.9.0/txt/rrdtutorial.pod
#usr/share/doc/rrdtool-1.9.0/txt/rrdtutorial.txt
#usr/share/doc/rrdtool-1.9.0/txt/rrdupdate.pod
#usr/share/doc/rrdtool-1.9.0/txt/rrdupdate.txt
#usr/share/doc/rrdtool-1.9.0/txt/rrdxport.pod
#usr/share/doc/rrdtool-1.9.0/txt/rrdxport.txt
#usr/share/locale/fr/LC_MESSAGES/rrdtool.mo
#usr/share/locale/hu/LC_MESSAGES/rrdtool.mo
#usr/share/man/man1/bin_dec_hex.1

View File

@@ -10,8 +10,8 @@ etc/shadow
#etc/shadow-
#lib/libsubid.la
#lib/libsubid.so
lib/libsubid.so.4
lib/libsubid.so.4.0.0
lib/libsubid.so.5
lib/libsubid.so.5.0.0
sbin/nologin
#usr/bin/chage
#usr/bin/chfn
@@ -19,7 +19,6 @@ sbin/nologin
#usr/bin/expiry
#usr/bin/faillog
#usr/bin/gpasswd
#usr/bin/lastlog
#usr/bin/newgidmap
#usr/bin/newgrp
#usr/bin/newuidmap

View File

@@ -11,7 +11,7 @@ etc/unbound/unbound.conf
#usr/lib/libunbound.la
#usr/lib/libunbound.so
usr/lib/libunbound.so.8
usr/lib/libunbound.so.8.1.27
usr/lib/libunbound.so.8.1.28
#usr/lib/pkgconfig/libunbound.pc
usr/sbin/unbound
usr/sbin/unbound-anchor
@@ -19,6 +19,7 @@ usr/sbin/unbound-checkconf
usr/sbin/unbound-control
usr/sbin/unbound-control-setup
usr/sbin/unbound-dhcp-leases-bridge
usr/sbin/unbound-dhcp-leases-client
usr/sbin/unbound-host
#usr/share/man/man1/unbound-host.1
#usr/share/man/man3/libunbound.3

View File

@@ -20,7 +20,6 @@ srv/web/ipfire/cgi-bin/fireinfo.cgi
srv/web/ipfire/cgi-bin/firewall.cgi
srv/web/ipfire/cgi-bin/fwhosts.cgi
srv/web/ipfire/cgi-bin/getrrdimage.cgi
srv/web/ipfire/cgi-bin/gpl.cgi
#srv/web/ipfire/cgi-bin/guardian.cgi
srv/web/ipfire/cgi-bin/gui.cgi
srv/web/ipfire/cgi-bin/hardwaregraphs.cgi
@@ -355,7 +354,6 @@ srv/web/ipfire/html/themes/ipfire/include/css/style.css
srv/web/ipfire/html/themes/ipfire/include/fonts/Prompt-Bold.ttf
srv/web/ipfire/html/themes/ipfire/include/fonts/Prompt-Medium.ttf
srv/web/ipfire/html/themes/ipfire/include/fonts/Prompt-Regular.ttf
srv/web/ipfire/html/themes/ipfire/include/functions.pl
srv/web/ipfire/html/themes/ipfire/include/js
srv/web/ipfire/html/themes/ipfire/include/js/refreshInetInfo.js
var/updatecache

File diff suppressed because it is too large Load Diff

View File

@@ -1 +1 @@
boot/initramfs-KVER-ipfire.img
boot/initramfs-KVER.img

View File

@@ -132,8 +132,6 @@ usr/local/bin/update-location-database
usr/sbin/openvpn-metrics
#usr/share
#usr/share/doc
#usr/share/doc/licenses
usr/share/doc/licenses/GPLv3
#usr/share/info
#usr/share/locale
#usr/share/man

View File

@@ -0,0 +1 @@
../../../../common/aarch64/linux

View File

@@ -0,0 +1 @@
../../../common/arping

View File

@@ -0,0 +1 @@
../../../common/bash

View File

@@ -0,0 +1 @@
../../../common/btrfs-progs

View File

@@ -0,0 +1 @@
../../../common/coreutils

View File

@@ -0,0 +1 @@
../../../common/cyrus-sasl

View File

@@ -0,0 +1 @@
../../../common/dhcp

View File

@@ -0,0 +1 @@
../../../common/exfatprogs

View File

@@ -0,0 +1,17 @@
etc/rc.d/init.d/connectd
etc/rc.d/init.d/functions
etc/rc.d/init.d/networking/functions.network
etc/rc.d/init.d/networking/red
etc/rc.d/init.d/suricata
lib/udev/network-aqm
lib/udev/network-hotplug-vlan
srv/web/ipfire/cgi-bin/dhcp.cgi
srv/web/ipfire/cgi-bin/services.cgi
srv/web/ipfire/cgi-bin/system.cgi
srv/web/ipfire/cgi-bin/vulnerabilities.cgi
var/ipfire/backup/bin/backup.pl
var/ipfire/general-functions.pl
var/ipfire/graphs.pl
var/ipfire/header.pl
var/ipfire/lang.pl
var/ipfire/network-functions.pl

View File

@@ -0,0 +1 @@
../../../common/findutils

View File

@@ -0,0 +1 @@
../../../common/gettext

View File

@@ -0,0 +1 @@
../../../common/hwdata

View File

@@ -0,0 +1 @@
../../../common/iproute2

View File

@@ -0,0 +1 @@
../../../common/knot

View File

@@ -0,0 +1 @@
../../../common/less

View File

@@ -0,0 +1 @@
../../../common/libarchive

View File

@@ -0,0 +1 @@
../../../common/libcap

View File

@@ -0,0 +1 @@
../../../common/libcap-ng

View File

@@ -0,0 +1 @@
../../../common/libgcrypt

View File

@@ -0,0 +1 @@
../../../common/libgpg-error

View File

@@ -0,0 +1 @@
../../../common/libinih

View File

@@ -0,0 +1 @@
../../../common/libjpeg

View File

@@ -0,0 +1 @@
../../../common/libnet

View File

@@ -0,0 +1 @@
../../../common/libnl-3

View File

@@ -0,0 +1 @@
../../../common/libqmi

View File

@@ -0,0 +1 @@
../../../common/libsodium

View File

@@ -0,0 +1 @@
../../../common/libtiff

View File

@@ -0,0 +1 @@
../../../common/libtirpc

View File

@@ -0,0 +1 @@
../../../common/libusb

View File

@@ -0,0 +1 @@
../../../common/libuv

View File

@@ -0,0 +1 @@
../../../common/libxml2

View File

@@ -0,0 +1 @@
../../../common/libxslt

View File

@@ -0,0 +1 @@
../../../common/linux-atm

View File

@@ -0,0 +1 @@
../../../common/lz4

View File

@@ -0,0 +1 @@
../../../common/man-pages

View File

@@ -0,0 +1 @@
../../../common/nasm

View File

@@ -0,0 +1 @@
../../../common/ncurses

View File

@@ -0,0 +1 @@
../../../common/poppler

View File

@@ -0,0 +1 @@
../../../common/readline

View File

@@ -0,0 +1 @@
../../../../common/riscv64/linux

Some files were not shown because too many files have changed in this diff Show More