This file is indexed.

/usr/share/doc/libnanomsg-dev/nanomsg.txt is in libnanomsg-dev 0.4~beta+dfsg-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
nanomsg(7)
==========


NAME
----
nanomsg - scalability protocols library


SYNOPSIS
--------
*cc* ['flags'] 'files' *-lnanomsg* ['libraries']


DESCRIPTION
-----------

Following functions are exported by nanomsg library:

Create an SP socket::
    linknanomsg:nn_socket[3]

Close an SP socket::
    linknanomsg:nn_close[3]

Set a socket option::
    linknanomsg:nn_setsockopt[3]

Retrieve a socket option::
    linknanomsg:nn_getsockopt[3]

Add a local endpoint to the socket::
    linknanomsg:nn_bind[3]

Add a remote endpoint to the socket::
    linknanomsg:nn_connect[3]

Remove an endpoint from the socket::
    linknanomsg:nn_shutdown[3]

Send a message::
    linknanomsg:nn_send[3]

Receive a message::
    linknanomsg:nn_recv[3]

Fine-grained alternative to nn_send::
    linknanomsg:nn_sendmsg[3]

Fine-grained alternative to nn_recv::
    linknanomsg:nn_recvmsg[3]

Allocation of messages::
    linknanomsg:nn_allocmsg[3]
    linknanomsg:nn_reallocmsg[3]
    linknanomsg:nn_freemsg[3]

Manipulation of message control data::
    linknanomsg:nn_cmsg[3]

Multiplexing::
    linknanomsg:nn_poll[3]

Retrieve the current errno::
    linknanomsg:nn_errno[3]

Convert an error number into human-readable string::
    linknanomsg:nn_strerror[3]

Query the names and values of nanomsg symbols::
    linknanomsg:nn_symbol[3]

Query properties of nanomsg symbols::
    linknanomsg:nn_symbol_info[3]

Start a device::
    linknanomsg:nn_device[3]

Notify all sockets about process termination::
    linknanomsg:nn_term[3]

Environment variables that influence nanomsg work::
    linknanomsg:nn_env[7]

Following scalability protocols are provided by nanomsg:

One-to-one protocol::
    linknanomsg:nn_pair[7]

Request/reply protocol::
    linknanomsg:nn_reqrep[7]

Publish/subscribe protocol::
    linknanomsg:nn_pubsub[7]

Survey protocol::
    linknanomsg:nn_survey[7]

Pipeline protocol::
    linknanomsg:nn_pipeline[7]

Message bus protocol::
    linknanomsg:nn_bus[7]

Following transport mechanisms are provided by nanomsg:

In-process transport::
    linknanomsg:nn_inproc[7]

Inter-process transport::
    linknanomsg:nn_ipc[7]

TCP transport::
    linknanomsg:nn_tcp[7]

Following tools are installed with the library:

nanocat::
    linknanomsg:nanocat[1]

AUTHORS
-------
Martin Sustrik <sustrik@250bpm.com>