ZeroMQ 인터페이스 함수 의: zmqunbid - 외부 연결 정지 요청

3448 단어 zeromq
ZeroMQ 공식 주소: http://api.zeromq.org/4-2:zmq_unbind
zmq_unbind(3)     ØMQ Manual - ØMQ/4.1.0
Name
zmq_unbind - 외부 연결 정지 요청
Synopsis
int zmq_unbind (void *socket, const char *endpoint);

Description
zmq_unbid () 함 수 는 socket 매개 변수 가 지정 한 socket 에 연 결 된 endpoint 가 지정 한 끝 점 을 연결 해제 합 니 다.
endpoint 매개 변 수 는 함수 zmqbid (3) 의 인자 입 니 다.
Return value
함수 zmqunbid () 실행 이 0 으로 되 돌 아 왔 습 니 다.그렇지 않 으 면 되 돌아 갑 니 다. -1. errno 의 값 을 다음 과 같이 정의 하 는 값 으로 설정 합 니 다.
Errors
  EINVAL
endpoint 인 자 를 사용 할 수 없습니다.
  ETERM
socket 인자 가 지정 한 socket 과 연 결 된 ZMQ context 이미 종결 되 었 다.
  ENOTSOCK
socket 인 자 는 사용 할 수 없습니다.
Example
배포 자 socket 을 TCP 전송 방식 에서 연결 합 니 다.
1 /* Create a ZMQ_SUB socket */

2 void *socket = zmq_socket (context, ZMQ_SUB); 3 assert (socket); 4 /* Connect it to the host server001, port 5555 using a TCP transport */

5 rc = zmq_bind (socket, "tcp://127.0.0.1:5555"); 6 assert (rc == 0); 7 /* Disconnect from the previously connected endpoint */

8 rc = zmq_unbind (socket, "tcp://127.0.0.1:5555"); assert (rc == 0);

See also
zmq_bind(3)  zmq_socket(3)  zmq(7)
Authors
This page was written by the ØMQ community. To make a change please read the ØMQ Contribution Policy at http://www.zeromq.org/docs:contributing.
Web site design and content is copyright (c) 2007-2012 iMatix Corporation. Contact us for professional support. Site content licensed under the Creative Commons Attribution-Share Alike 3.0 License. ØMQ is copyright (c) Copyright (c) 2007-2012 iMatix Corporation and Contributors. ØMQ is free software licensed under the LGPL. ØMQ, ZeroMQ, and 0MQ are trademarks of iMatix Corporation. Terms of Use — Privacy
Policy
 
더 ZeroMQ API: http://www.cnblogs.com/fengbohello/p/4230135.html 
 
풍파
mail : [email protected]

좋은 웹페이지 즐겨찾기