Archive for June, 2007
Sunday, June 3rd, 2007
RESIZE_REISERFS
Section: Maintenance Commands (8)Updated: January 2004Index
Return to Main Contents
NAME
resize_reiserfs – resizer tool for the ReiserFS filesystem
SYNOPSIS
resize_reiserfs
[
–s
[+|–]size[K|M|G]
] [
–j
dev
] [
–fqv
]
device
DESCRIPTION
The
resize_reiserfs
tool resizes an unmounted reiserfs file system. It enlarges or shrinks an
reiserfs file system located on a
device
so that it will have
size
bytes or size=old_size +(–)
size
bytes if the + or – prefix is used.
If ...
Posted in Man Pages | No Comments »
Sunday, June 3rd, 2007
DEBUGREISERFS
Section: Maintenance Commands (8)Updated: February 2004Index
Return to Main Contents
NAME
debugreiserfs – The debugging tool for the ReiserFS filesystem.
SYNOPSIS
debugreiserfs
[
–dDJmoqpuSV
] [
–j device
] [
–B file
] [
–1 N
]
device
DESCRIPTION
debugreiserfs sometimes helps to solve problems with reiserfs filesystems.
When run without options it prints the super block of the ReiserFS filesystem found
on the device.
device
is the special file ...
Posted in Man Pages | No Comments »
Sunday, June 3rd, 2007
REISERFSCK
Section: Maintenance Commands (8)Updated: February 2004Index
Return to Main Contents
NAME
reiserfsck – The checking tool for the ReiserFS filesystem.
SYNOPSIS
reiserfsck
[ –afprVy ]
[ ––rebuild–sb | ––check | ––fix–fixable
| ––rebuild–tree | ––clean–attributes ]
[ –j | ––journal device ]
[ –z | ––adjust–size ]
[ –n | ––nolog ]
[ –B | ––badblocks file ]
[ –l | ––logfile ...
Posted in Man Pages | No Comments »
Sunday, June 3rd, 2007
LWRES_GETADDRINFO
Section: BIND9 (3)Updated: Jun 30, 2000Index
Return to Main Contents
NAME
lwres_getaddrinfo, lwres_freeaddrinfo – socket address structure to host and service name
SYNOPSIS
#include <lwres/netdb.h>
int lwres_getaddrinfo(const char *hostname, const char *servname, const struct addrinfo *hints, struct addrinfo **res);
void lwres_freeaddrinfo(struct addrinfo *ai);
If the operating system does not provide a
struct addrinfo, the following structure is used:
struct addrinfo {
int ...
Posted in Man Pages | No Comments »
Sunday, June 3rd, 2007
LWRES_GAI_STRERROR
Section: BIND9 (3)Updated: Jun 30, 2000Index
Return to Main Contents
NAME
lwres_gai_strerror – print suitable error string
SYNOPSIS
#include <lwres/netdb.h>
char * gai_strerror(int ecode);
DESCRIPTION
lwres_gai_strerror()
returns an error message corresponding to an error code returned by
getaddrinfo(). The following error codes and their meaning are defined in
include/lwres/netdb.h.
EAI_ADDRFAMILY
address family for hostname not supported
EAI_AGAIN
temporary failure in name resolution
EAI_BADFLAGS
invalid value for
ai_flags
EAI_FAIL
non–recoverable failure in ...
Posted in Man Pages | No Comments »
Sunday, June 3rd, 2007
LWRES_BUFFER
Section: BIND9 (3)Updated: Jun 30, 2000Index
Return to Main Contents
NAME
lwres_buffer_init, lwres_buffer_invalidate, lwres_buffer_add, lwres_buffer_subtract, lwres_buffer_clear, lwres_buffer_first, lwres_buffer_forward, lwres_buffer_back, lwres_buffer_getuint8, lwres_buffer_putuint8, lwres_buffer_getuint16, lwres_buffer_putuint16, lwres_buffer_getuint32, lwres_buffer_putuint32, lwres_buffer_putmem, lwres_buffer_getmem – lightweight resolver buffer management
SYNOPSIS
#include <lwres/lwbuffer.h>
void lwres_buffer_init(lwres_buffer_t *b, void *base, unsigned int length);
void lwres_buffer_invalidate(lwres_buffer_t *b);
void lwres_buffer_add(lwres_buffer_t *b, unsigned int n);
void lwres_buffer_subtract(lwres_buffer_t *b, unsigned int n);
void lwres_buffer_clear(lwres_buffer_t *b);
void lwres_buffer_first(lwres_buffer_t *b);
void lwres_buffer_forward(lwres_buffer_t *b, unsigned int n);
void lwres_buffer_back(lwres_buffer_t *b, unsigned int n);
lwres_uint8_t lwres_buffer_getuint8(lwres_buffer_t *b);
void lwres_buffer_putuint8(lwres_buffer_t *b, lwres_uint8_t val);
lwres_uint16_t lwres_buffer_getuint16(lwres_buffer_t *b);
void lwres_buffer_putuint16(lwres_buffer_t *b, lwres_uint16_t val);
lwres_uint32_t ...
Posted in Man Pages | No Comments »
Sunday, June 3rd, 2007
DBOPEN
Section: C Library Functions (3)Updated: 1994–01–02Index
Return to Main Contents
NAME
dbopen – database access methods
SYNOPSIS
#include <sys/types.h>
#include <limits.h>
#include <db.h>
DB *
dbopen(const char *file, int flags, int mode, DBTYPE type,
const void *openinfo);
DESCRIPTION
dbopen()
is the library interface to database files.
The supported file formats are btree, hashed and UNIX file oriented.
The btree format is a representation of a ...
Posted in Man Pages | No Comments »
Saturday, June 2nd, 2007
LWRES_RESUTIL
Section: BIND9 (3)Updated: Jun 30, 2000Index
Return to Main Contents
NAME
lwres_string_parse, lwres_addr_parse, lwres_getaddrsbyname, lwres_getnamebyaddr – lightweight resolver utility functions
SYNOPSIS
#include <lwres/lwres.h>
lwres_result_t lwres_string_parse(lwres_buffer_t *b, char **c, lwres_uint16_t *len);
lwres_result_t lwres_addr_parse(lwres_buffer_t *b, lwres_addr_t *addr);
lwres_result_t lwres_getaddrsbyname(lwres_context_t *ctx, const char *name, lwres_uint32_t addrtypes, lwres_gabnresponse_t **structp);
lwres_result_t lwres_getnamebyaddr(lwres_context_t *ctx, lwres_uint32_t addrtype, lwres_uint16_t addrlen, const unsigned char *addr, lwres_gnbaresponse_t **structp);
DESCRIPTION
lwres_string_parse()
retrieves a DNS–encoded string starting the current pointer of lightweight resolver buffer
b: i.e.
b–>current. When the function returns, the address ...
Posted in Man Pages | No Comments »
Saturday, June 2nd, 2007
LWRES_GETADDRINFO
Section: BIND9 (3)Updated: Jun 30, 2000Index
Return to Main Contents
NAME
lwres_getaddrinfo, lwres_freeaddrinfo – socket address structure to host and service name
SYNOPSIS
#include <lwres/netdb.h>
int lwres_getaddrinfo(const char *hostname, const char *servname, const struct addrinfo *hints, struct addrinfo **res);
void lwres_freeaddrinfo(struct addrinfo *ai);
If the operating system does not provide a
struct addrinfo, the following structure is used:
struct addrinfo {
int ...
Posted in Man Pages | No Comments »
Saturday, June 2nd, 2007
LWRES_HSTRERROR
Section: BIND9 (3)Updated: Jun 30, 2000Index
Return to Main Contents
NAME
lwres_herror, lwres_hstrerror – lightweight resolver error message generation
SYNOPSIS
#include <lwres/netdb.h>
void lwres_herror(const char *s);
const char * lwres_hstrerror(int err);
DESCRIPTION
lwres_herror()
prints the string
s
on
stderr
followed by the string generated by
lwres_hstrerror()
for the error code stored in the global variable
lwres_h_errno.
lwres_hstrerror()
returns an appropriate string for the error code gievn by
err. The values of the error ...
Posted in Man Pages | No Comments »