제가 ldap c api를 이용해서 search하는것을 짜야하는데 c api를 보니 example로 파일들이 있더라구요. 그래서 비쥬얼 C를 아주 약간 배웠던 터라 일단은 실행을 해보았는데 되긴 됩니다. 하지만 소스를 보면 이해가 안가는 것들이 많네요. 그래서 매뉴얼을 보았는데 영문이라 해석도 잘 안되고 시간은 계속 가고있고 난감합니다. 일단 search example코드가
#include "examples.h"
int
main( int argc, char **argv )
{
LDAP *ld;
LDAPMessage *result, *e;
BerElement *ber;
char *a, *dn;
char **vals;
int i;
/* get a handle to an LDAP connection */
if ( (ld = ldap_init( MY_HOST, MY_PORT )) == NULL ) {
perror( "ldap_init" );
return( 1 );
}
/* authenticate to the directory as nobody */
if ( ldap_simple_bind_s( ld, NULL, NULL ) != LDAP_SUCCESS ) {
ldap_perror( ld, "ldap_simple_bind_s" );
ldap_unbind( ld );
return( 1 );
}
/* search for all entries with surname of Jensen */
if ( ldap_search_s( ld, MY_SEARCHBASE, LDAP_SCOPE_SUBTREE,
MY_FILTER, NULL, 0, &result ) != LDAP_SUCCESS ) {
ldap_perror( ld, "ldap_search_s" );
if ( result == NULL ) {
ldap_unbind( ld );
return( 1 );
}
}
/* for each entry print out name + all attrs and values */
for ( e = ldap_first_entry( ld, result ); e != NULL;
e = ldap_next_entry( ld, e ) ) {
if ( (dn = ldap_get_dn( ld, e )) != NULL ) {
printf( "dn: %s\n", dn );
ldap_memfree( dn );
}
for ( a = ldap_first_attribute( ld, e, &ber );
a != NULL; a = ldap_next_attribute( ld, e, ber ) ) {
if ((vals = ldap_get_values( ld, e, a)) != NULL ) {
for ( i = 0; vals[i] != NULL; i++ ) {
printf( "%s: %s\n", a, vals[i] );
}
ldap_value_free( vals );
}
ldap_memfree( a );
}
if ( ber != NULL ) {
ber_free( ber, 0 );
}
printf( "\n" );
}
ldap_msgfree( result );
ldap_unbind( ld );
return( 0 );
}
이렇게 인데 저기에서 perror함수가 무엇인가요. 그리고 지금 이 코드가 네트워크프로그래밍과 연관성이 많은지요. 쓰다보니 질문이 많네요... ㅜㅜ 아참! 그리고 제가 unix에서 공부를 해야하는데 unix는 gcc로 c를 실행시키는데 추천할만한 도서가 있으시면 추천 해주시면 감사하겠습니다. c문법보다는 gcc의 사용법이 좀 자세하게 나와있는걸로 해주셨으면 합니다.
|