rapi_fmt_filtspec(3) Library Functions Manual rapi_fmt_filtspec(3)NAME
rapi_fmt_filtspec - Format an RSVP API (RAPI) filter spec
LIBRARY
RAPI Library (librsvp.so, librsvp.a)
SYNOPSIS
#include <rapi.h>
void rapi_fmt_filtspec( rapi_filter_t *filtp, char *buffer, int length);
PARAMETERS
Points to an RAPI filter spec. Points to a buffer that is to contain the formatted filter spec. Specifies the length, in bytes, of the
buffer that is to contain the formatted filter spec.
DESCRIPTION
The rapi_fmt_filtspec() routine reads a given RAPI filter spec and formats it into a fixed length buffer whose address is specified by buf-
fer and whose size is specified by length. If the buffer size is too small, the formatted filter spec is truncated.
RELATED INFORMATION
Functions: rapi_event_rtn_t(3), rapi_fmt_adspec(3), rapi_fmt_flowspec(3), rapi_fmt_tspec(3).
Network: RSVP(7). delim off
rapi_fmt_filtspec(3)
Check Out this Related Man Page
rapi_release(3) Library Functions Manual rapi_release(3)NAME
rapi_release - Remove a Resource ReSerVation Protocol (RSVP) API session
LIBRARY
RAPI Library (librsvp.so, librsvp.a)
SYNOPSIS
#include <rapi.h>
int rapi_release( rapi_sid_t Sid);
PARAMETERS
Specifies the session identifier that was returned by a successful call to the rapi_session routine.
DESCRIPTION
The rapi_release() routine removes any reservations and the state corresponding to a given session handle. If an application terminates
without terminating its RSVP API sessions, the rapi_release() routine is called implicitly.
RETURN VALUES
Upon successful completion, the rapi_release() routine returns a value of 0 (zero). If the session handle is invalid, the routine returns
an RAPI error code.
RELATED INFORMATION
Functions: rapi_dispatch(3), rapi_event_rtn_t(3), rapi_getfd(3), rapi_reserve(3), rapi_sender(3), rapi_session(3), rapi_strerror(3),
rapi_version(3).
Network: RSVP(7). delim off
rapi_release(3)
I want to copy a existing file to a fixed length file. Thanks , I used awk getline and infuntion mode was using 0 as end of file. and length to give but the programs comes out without doing anything
I need the help
CM (3 Replies)
hi I need a Pseudo code or a description of what a program is saying from this spec and code:
Just so i can understand how this solution was achieved, thanks
here is the spec:
Specifications are as follows:-
The books records are stored in one csv file and the layout and the contents... (7 Replies)
Hello,
I have two files in this form that consist of three columns, a name (L*contig*), the length (length=**) and the sequence
LT_file.txt
LTcontig1 length=13 acccatgctttta
LTcontig5 length=8 ggattacc
LTcontig8 length=20 ccattgaccgtacctgatcg
LTcontig23 length=5 accta
and... (5 Replies)
I want to filter file information so that i have a column containing file size adjacent to a column containing that files name.
I am using:
find . -type f -exec ls -l {} \; | awk '$5 $9 {print $5 $9}'
and the problem lies with $9 because it prints the file path, /. . ./filename.
I want the... (3 Replies)