mirror of
				https://github.com/zeromq/libzmq.git
				synced 2025-11-04 12:17:39 +01:00 
			
		
		
		
	fix typos
This commit is contained in:
		@@ -29,9 +29,9 @@ for whom GSSAPI credentials should be acquired.
 | 
				
			|||||||
To become a GSSAPI server, the application additionally sets the
 | 
					To become a GSSAPI server, the application additionally sets the
 | 
				
			||||||
ZMQ_GSSAPI_SERVER option on the socket.
 | 
					ZMQ_GSSAPI_SERVER option on the socket.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
To become a GSSAPI client, the application sets additionally sets the
 | 
					To become a GSSAPI client, the application additionally sets the
 | 
				
			||||||
ZMQ_GSSAPI_SERVICE_PRINCIPAL option to the name of the principal of the server
 | 
					ZMQ_GSSAPI_SERVICE_PRINCIPAL option to the name of the principal of the server
 | 
				
			||||||
to which it intends to connect.  
 | 
					to which it intends to connect.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
OPTIONAL ENCRYPTION
 | 
					OPTIONAL ENCRYPTION
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -203,7 +203,7 @@ Applicable socket types:: all, when using TCP transport
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
ZMQ_GSSAPI_PLAINTEXT: Disable GSSAPI encryption
 | 
					ZMQ_GSSAPI_PLAINTEXT: Disable GSSAPI encryption
 | 
				
			||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 | 
					~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 | 
				
			||||||
Defines whether communications on the socket will encrypted, see
 | 
					Defines whether communications on the socket will be encrypted, see
 | 
				
			||||||
linkzmq:zmq_gssapi[7]. A value of '1' means  that communications will be
 | 
					linkzmq:zmq_gssapi[7]. A value of '1' means  that communications will be
 | 
				
			||||||
plaintext.  A value of '0' means communications will be encrypted.
 | 
					plaintext.  A value of '0' means communications will be encrypted.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1205,7 +1205,7 @@ int zmq::socket_base_t::recv (msg_t *msg_, int flags_)
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    //  If the message cannot be fetched immediately, there are two scenarios.
 | 
					    //  If the message cannot be fetched immediately, there are two scenarios.
 | 
				
			||||||
    //  For non-blocking recv, commands are processed in case there's an
 | 
					    //  For non-blocking recv, commands are processed in case there's an
 | 
				
			||||||
    //  activate_reader command already waiting int a command pipe.
 | 
					    //  activate_reader command already waiting in a command pipe.
 | 
				
			||||||
    //  If it's not, return EAGAIN.
 | 
					    //  If it's not, return EAGAIN.
 | 
				
			||||||
    if (flags_ & ZMQ_DONTWAIT || options.rcvtimeo == 0) {
 | 
					    if (flags_ & ZMQ_DONTWAIT || options.rcvtimeo == 0) {
 | 
				
			||||||
        if (unlikely (process_commands (0, false) != 0)) {
 | 
					        if (unlikely (process_commands (0, false) != 0)) {
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user