ldap_version(3LDAP) LDAP Library Functions ldap_version(3LDAP)NAME
ldap_version - get version information about the LDAP SDK for C
SYNOPSIS
cc -flag ... file...-lldap [ -library ... ]
#include <ldap.h>
int ldap_version(LDAPVERSION *ver);
DESCRIPTION
A call to this function returns the version information for the LDAP SDK for C. This is a deprecated function. Use ldap_get_option(3LDAP)
instead. The version information is returned in the LDAPVersion structure pointed to by ver. If NULL is passed for ver, then only the SDK
version will be returned.
RETURN VALUES
The ldap_version() function returns the version number of the LDAP SDK for C, multiplied by 100. For example, for version 1.0 of the LDAP
SDK for C, the function returns 100.
ATTRIBUTES
See attributes(5) for descriptions of the following attributes:
+-----------------------------+-----------------------------+
| ATTRIBUTE TYPE | ATTRIBUTE VALUE |
+-----------------------------+-----------------------------+
|Availability |SUNWcsl (32-bit) |
+-----------------------------+-----------------------------+
| |SUNWcslx (64-bit) |
+-----------------------------+-----------------------------+
|Interface Stability |Obsolete |
+-----------------------------+-----------------------------+
SEE ALSO ldap_get_option(3LDAP), attributes(5)SunOS 5.11 19 Oct 2001 ldap_version(3LDAP)
Check Out this Related Man Page
ldap_abandon(3LDAP) LDAP Library Functions ldap_abandon(3LDAP)NAME
ldap_abandon - abandon an LDAP operation in progress
SYNOPSIS
cc[ flag... ] file... -lldap[ library... ]
#include <lber.h>
#include <ldap.h>
int ldap_abandon(LDAP *ld, int msgid);
DESCRIPTION
The ldap_abandon() function is used to abandon or cancel an LDAP operation in progress. The msgid passed should be the message id of an
outstanding LDAP operation, as returned by ldap_search(3LDAP), ldap_modify(3LDAP), etc.
ldap_abandon() checks to see if the result of the operation has already come in. If it has, it deletes it from the queue of pending mes-
sages. If not, it sends an LDAP abandon operation to the the LDAP server.
The caller can expect that the result of an abandoned operation will not be returned from a future call to ldap_result(3LDAP).
ERRORS
ldap_abandon() returns 0 if successful or -1otherwise and setting ld_errno appropriately. See ldap_error(3LDAP) for details.
ATTRIBUTES
See attributes(5) for a description of the following attributes:
+-----------------------------+-----------------------------+
| ATTRIBUTE TYPE | ATTRIBUTE VALUE |
|Availability |SUNWcsl (32-bit) |
| |SUNWcslx (64-bit) |
|Interface Stability |Evolving |
+-----------------------------+-----------------------------+
SEE ALSO ldap(3LDAP), ldap_result(3LDAP), ldap_error(3LDAP), attributes(5)SunOS 5.11 27 Jan 2002 ldap_abandon(3LDAP)
I'm so green in unix, and now i need to connecting a digital unix (osf1 ver 4.0d) and microsoft nt server (ver 4) under tcp/ip protocol. Please tell me what should i do ?
Thanks a lot. (2 Replies)
Hi guys :)
I've just switched from 32 bit to a 64 bit Arch Linux and I've installed the android SDK but, I can't run the emulator because some lib is missing ( ia32-libs ), if anyone have resolved this problem in a non Debian based GNU/Linux Distro let me know. I've search the web for that lib but... (2 Replies)
Actually I was facing the following issue while building my Yocto SDK on Docker container
sudo docker build --tag="akash/eclipse-che:6.5.0-1" --tag="akash/eclipse-che:latest" /home/akash/dockerimage.yocto.support/
Sending build context to Docker daemon 26.93MB
Step 1/5 : FROM eclipse/cpp_gcc
... (3 Replies)
Any idea why this fails?
Here is a PubNub PHP SDK V4 working code which throws the error:
PHP Parse error: syntax error, unexpected 'use' (T_USE) in .....
According to the PubNub docs, V4 of the PHP SDK support PHP v5.6, so I'm really confused as to why this error.
Directly from this... (3 Replies)