2016-07-05 21:37:31 +08:00
|
|
|
.. -*- coding: utf-8; mode: rst -*-
|
|
|
|
|
|
|
|
.. _ca_fopen:
|
|
|
|
|
2017-09-02 00:28:16 +08:00
|
|
|
====================
|
|
|
|
Digital TV CA open()
|
|
|
|
====================
|
2016-07-05 21:37:31 +08:00
|
|
|
|
2016-07-06 02:14:35 +08:00
|
|
|
Name
|
2016-07-05 18:58:48 +08:00
|
|
|
----
|
2016-07-05 21:37:31 +08:00
|
|
|
|
2017-09-02 00:28:16 +08:00
|
|
|
Digital TV CA open()
|
2016-07-05 21:37:31 +08:00
|
|
|
|
2016-07-06 02:14:35 +08:00
|
|
|
|
|
|
|
Synopsis
|
2016-07-05 21:37:31 +08:00
|
|
|
--------
|
|
|
|
|
2016-08-20 03:56:15 +08:00
|
|
|
.. c:function:: int open(const char *name, int flags)
|
|
|
|
:name: dvb-ca-open
|
2016-07-05 21:37:31 +08:00
|
|
|
|
|
|
|
|
2016-07-06 02:14:35 +08:00
|
|
|
Arguments
|
2016-07-05 18:58:48 +08:00
|
|
|
---------
|
2016-07-05 21:37:31 +08:00
|
|
|
|
2016-08-20 03:56:15 +08:00
|
|
|
``name``
|
2017-09-02 00:28:16 +08:00
|
|
|
Name of specific Digital TV CA device.
|
2016-08-20 03:56:15 +08:00
|
|
|
|
|
|
|
``flags``
|
|
|
|
A bit-wise OR of the following flags:
|
|
|
|
|
2016-07-05 21:37:31 +08:00
|
|
|
.. flat-table::
|
|
|
|
:header-rows: 0
|
|
|
|
:stub-columns: 0
|
|
|
|
|
2016-08-20 03:56:15 +08:00
|
|
|
-
|
|
|
|
- O_RDONLY
|
|
|
|
- read-only access
|
2016-07-05 21:37:31 +08:00
|
|
|
|
2016-08-20 03:56:15 +08:00
|
|
|
-
|
|
|
|
- O_RDWR
|
|
|
|
- read/write access
|
2016-07-05 21:37:31 +08:00
|
|
|
|
2016-08-20 03:56:15 +08:00
|
|
|
-
|
|
|
|
- O_NONBLOCK
|
|
|
|
- open in non-blocking mode
|
|
|
|
(blocking mode is the default)
|
2016-07-05 21:37:31 +08:00
|
|
|
|
|
|
|
|
2016-07-06 02:14:35 +08:00
|
|
|
Description
|
2016-07-05 18:58:48 +08:00
|
|
|
-----------
|
2016-07-05 21:37:31 +08:00
|
|
|
|
2017-09-02 00:23:17 +08:00
|
|
|
This system call opens a named ca device (e.g. ``/dev/dvb/adapter?/ca?``)
|
|
|
|
for subsequent use.
|
2016-07-05 21:37:31 +08:00
|
|
|
|
2016-07-05 18:58:48 +08:00
|
|
|
When an open() call has succeeded, the device will be ready for use. The
|
|
|
|
significance of blocking or non-blocking mode is described in the
|
|
|
|
documentation for functions where there is a difference. It does not
|
|
|
|
affect the semantics of the open() call itself. A device opened in
|
|
|
|
blocking mode can later be put into non-blocking mode (and vice versa)
|
|
|
|
using the F_SETFL command of the fcntl system call. This is a standard
|
|
|
|
system call, documented in the Linux manual page for fcntl. Only one
|
|
|
|
user can open the CA Device in O_RDWR mode. All other attempts to open
|
|
|
|
the device in this mode will fail, and an error code will be returned.
|
|
|
|
|
|
|
|
|
2016-07-06 02:14:35 +08:00
|
|
|
Return Value
|
2016-07-05 18:58:48 +08:00
|
|
|
------------
|
2016-07-05 21:37:31 +08:00
|
|
|
|
2016-08-19 19:00:44 +08:00
|
|
|
|
2017-09-02 00:15:43 +08:00
|
|
|
On success 0 is returned.
|
2016-07-05 21:37:31 +08:00
|
|
|
|
2017-09-02 00:15:43 +08:00
|
|
|
On error -1 is returned, and the ``errno`` variable is set
|
|
|
|
appropriately.
|
2016-07-05 21:37:31 +08:00
|
|
|
|
2017-09-02 00:15:43 +08:00
|
|
|
Generic error codes are described at the
|
|
|
|
:ref:`Generic Error Codes <gen-errors>` chapter.
|