|
|
|
tsix_get_mac(3n) -- get the MAC label of incoming data
|
|
tsix_get_mac retrieves the MAC label associated with data incoming on fd, which must be associated with a socket. If tsix_get_mac is successful, that MAC label will be pointed to by lbl. The caller should call mac_free on the mac_t argument lbl, which was passed to tsix_get_mac. If _SC_IP_SECOPTS is not in effect, tsix_get_mac always returns success. |
|
tsix_get_solabel(3n) -- get the MAC label of a socket
|
|
tsix_get_solabel retrieves the MAC label of an Internet-domain socket represented by fd. If tsix_get_solabel is successful, that MAC label will be pointed to by lbl. The caller should call mac_free on the mac_t argument lbl, which was passed to tsix_get_solabel. If _SC_IP_SECOPTS is not in effect, tsix_get_solabel always returns success. |
|
|
tsix_get_uid(3n) -- get the User ID of incoming data
|
|
tsix_get_uid retrieves the User ID associated with data incoming on fd, which must be associated with a socket. If tsix_get_uid is successful, that User ID will be contained in the object pointed to by uidp. If _SC_IP_SECOPTS is not in effect, tsix_get_uid always returns success. |
|
tsix_off(3n) -- disable trusted networking
|
|
tsix_off disables trusted operation on file descriptor fd, which must be associated with a socket. This causes the socket to be subject to normal system security policy regarding incoming data. This is the normal default for all sockets. |
|
tsix_on(3n) -- enable trusted networking
|
|
tsix_on enables trusted operation on file descriptor fd, which must be associated with a socket. This causes the socket to ignore normal system security policy regarding incoming data. |
|
tsix_recvfrom_mac(3n) -- receive a message and a MAC label from a socket
|
|
tsix_recvfrom_mac receives a message from a socket, additionally returning the MAC label associated with the data just received. tsix_recvfrom_mac is otherwise identical to recvfrom(2). If tsix_recvfrom_mac is successful, that MAC label will be pointed to by lbl. |
|
tsix_sendto_mac(3n) -- send a message with a specified MAC label
|
|
tsix_sendto_mac transmits a message to another socket, temporarily overriding the default MAC label associated with that message with the MAC label pointed to by lbl. tsix_sendto_mac is otherwise identical to sendto(2). |
|
tsix_set_mac(3n) -- set the MAC label of outgoing data
|
|
tsix_set_mac sets the MAC label of all outgoing communication on fd, which must be associated with a socket, to the MAC label pointed to by lbl. |
|
tsix_set_mac_byrhost(3n) -- set the MAC label of outgoing data
|
|
tsix_set_mac_byrhost sets the MAC label of all outgoing communication on fd, which must be associated with a socket, to the default MAC label for that host. If lbl is not NULL, lbl will point to that MAC label upon successful execution of tsix_set_mac_byrhost. |
|
tsix_set_solabel(3n) -- set the MAC label of a socket
|
|
tsix_set_solabel sets the MAC label of an Internet-domain socket represented by fd to the MAC label pointed to by lbl. |
|
tsix_set_uid(3n) -- set the User ID of outgoing data
|
|
tsix_set_uid sets the User ID of all outgoing communication on fd , which must be associated with a socket, to the User ID contained in uid . |
|
complib/TSTURM(3) -- EISPACK routine. This subroutine finds those eigenvalues of a TRIDIAGONAL SYMMETRIC matrix which lie in a spec
|
|
On Input NM must be set to the row dimension of two-dimensional array parameters as declared in the calling program dimension statement. N is the order of the matrix. EPS1 is an absolute error tolerance for the computed eigenvalues. It should be chosen commensurate with relative perturbations in the matrix elements of the order of the relative machine precision. If the input EPS1 is non-positive, it is reset for each submatrix to a default value, namely, minus the product of the relative machine... |
|
ftn/ttynam(3) -- find name of a terminal port
|
|
Ttynam returns a blank padded path name of the terminal device associated with logical unit lunit. MAXLEN is the maximum length of the path name for the terminal device. Isatty returns .true. if lunit is associated with a terminal device, .false. otherwise. |
|
ttyname(3c) -- find name of a terminal
|
|
ttyname returns a pointer to a string containing the null-terminated path name of the terminal device associated with file descriptor fildes. ttyname_r is a reentrant version of ttyname where buf and buflen give the location and maximum size of where the resultant string should be placed. The maximum length of the terminal name is {TTY_NAME_MAX}. sysconf(3C) may be used to determine this value. isa... |
|
ttyslot(3c) -- find the slot in the utmp file of the current user
|
|
ttyslot returns the index of the current user's entry in the /var/adm/utmp file. This is accomplished by calling ttyname(3C) to determine which device the calling program has associated with the standard input, the standard output, or the error output (0, 1 or 2). This device name is then searched for in the /var/adm/utmp file. |