Files
src.dualinventive.com/go/devsim/vendor/github.com/pebbe/zmq4/socketget_unix.go
2024-08-09 12:10:16 +02:00

16 lines
262 B
Go

// +build !windows
package zmq4
/*
#include <zmq.h>
*/
import "C"
// ZMQ_FD: Retrieve file descriptor associated with the socket
//
// See: http://api.zeromq.org/4-1:zmq-getsockopt#toc9
func (soc *Socket) GetFd() (int, error) {
return soc.getInt(C.ZMQ_FD)
}