You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					114 lines
				
				2.8 KiB
			
		
		
			
		
	
	
					114 lines
				
				2.8 KiB
			| 
											6 years ago
										 | '\" t
 | ||
|  | .\"     Title: zmq_has
 | ||
|  | .\"    Author: [see the "AUTHORS" section]
 | ||
|  | .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
 | ||
|  | .\"      Date: 09/14/2016
 | ||
|  | .\"    Manual: 0MQ Manual
 | ||
|  | .\"    Source: 0MQ 4.1.5
 | ||
|  | .\"  Language: English
 | ||
|  | .\"
 | ||
|  | .TH "ZMQ_HAS" "3" "09/14/2016" "0MQ 4\&.1\&.5" "0MQ Manual"
 | ||
|  | .\" -----------------------------------------------------------------
 | ||
|  | .\" * Define some portability stuff
 | ||
|  | .\" -----------------------------------------------------------------
 | ||
|  | .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 | ||
|  | .\" http://bugs.debian.org/507673
 | ||
|  | .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
 | ||
|  | .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 | ||
|  | .ie \n(.g .ds Aq \(aq
 | ||
|  | .el       .ds Aq '
 | ||
|  | .\" -----------------------------------------------------------------
 | ||
|  | .\" * set default formatting
 | ||
|  | .\" -----------------------------------------------------------------
 | ||
|  | .\" disable hyphenation
 | ||
|  | .nh
 | ||
|  | .\" disable justification (adjust text to left margin only)
 | ||
|  | .ad l
 | ||
|  | .\" -----------------------------------------------------------------
 | ||
|  | .\" * MAIN CONTENT STARTS HERE *
 | ||
|  | .\" -----------------------------------------------------------------
 | ||
|  | .SH "NAME"
 | ||
|  | zmq_has \- check a ZMQ capability
 | ||
|  | .SH "SYNOPSIS"
 | ||
|  | .sp
 | ||
|  | \fBint zmq_has (const char *capability);\fR
 | ||
|  | .SH "DESCRIPTION"
 | ||
|  | .sp
 | ||
|  | The \fIzmq_has()\fR function shall report whether a specified capability is available in the library\&. This allows bindings and applications to probe a library directly, for transport and security options\&.
 | ||
|  | .sp
 | ||
|  | Capabilities shall be lowercase strings\&. The following capabilities are defined:
 | ||
|  | .sp
 | ||
|  | .RS 4
 | ||
|  | .ie n \{\
 | ||
|  | \h'-04'\(bu\h'+03'\c
 | ||
|  | .\}
 | ||
|  | .el \{\
 | ||
|  | .sp -1
 | ||
|  | .IP \(bu 2.3
 | ||
|  | .\}
 | ||
|  | ipc \- the library supports the ipc:// protocol
 | ||
|  | .RE
 | ||
|  | .sp
 | ||
|  | .RS 4
 | ||
|  | .ie n \{\
 | ||
|  | \h'-04'\(bu\h'+03'\c
 | ||
|  | .\}
 | ||
|  | .el \{\
 | ||
|  | .sp -1
 | ||
|  | .IP \(bu 2.3
 | ||
|  | .\}
 | ||
|  | pgm \- the library supports the pgm:// protocol
 | ||
|  | .RE
 | ||
|  | .sp
 | ||
|  | .RS 4
 | ||
|  | .ie n \{\
 | ||
|  | \h'-04'\(bu\h'+03'\c
 | ||
|  | .\}
 | ||
|  | .el \{\
 | ||
|  | .sp -1
 | ||
|  | .IP \(bu 2.3
 | ||
|  | .\}
 | ||
|  | tipc \- the library supports the tipc:// protocol
 | ||
|  | .RE
 | ||
|  | .sp
 | ||
|  | .RS 4
 | ||
|  | .ie n \{\
 | ||
|  | \h'-04'\(bu\h'+03'\c
 | ||
|  | .\}
 | ||
|  | .el \{\
 | ||
|  | .sp -1
 | ||
|  | .IP \(bu 2.3
 | ||
|  | .\}
 | ||
|  | norm \- the library supports the norm:// protocol
 | ||
|  | .RE
 | ||
|  | .sp
 | ||
|  | .RS 4
 | ||
|  | .ie n \{\
 | ||
|  | \h'-04'\(bu\h'+03'\c
 | ||
|  | .\}
 | ||
|  | .el \{\
 | ||
|  | .sp -1
 | ||
|  | .IP \(bu 2.3
 | ||
|  | .\}
 | ||
|  | curve \- the library supports the CURVE security mechanism
 | ||
|  | .RE
 | ||
|  | .sp
 | ||
|  | .RS 4
 | ||
|  | .ie n \{\
 | ||
|  | \h'-04'\(bu\h'+03'\c
 | ||
|  | .\}
 | ||
|  | .el \{\
 | ||
|  | .sp -1
 | ||
|  | .IP \(bu 2.3
 | ||
|  | .\}
 | ||
|  | gssapi \- the library supports the GSSAPI security mechanism
 | ||
|  | .RE
 | ||
|  | .sp
 | ||
|  | When this method is provided, the zmq\&.h header file will define ZMQ_HAS_CAPABILITIES\&.
 | ||
|  | .SH "RETURN VALUE"
 | ||
|  | .sp
 | ||
|  | The \fIzmq_has()\fR function shall return 1 if the specified capability is provided\&. Otherwise it shall return 0\&.
 | ||
|  | .SH "AUTHORS"
 | ||
|  | .sp
 | ||
|  | This page was written by the 0MQ community\&. To make a change please read the 0MQ Contribution Policy at \m[blue]\fBhttp://www\&.zeromq\&.org/docs:contributing\fR\m[]\&.
 |