From 450e034c75ddf6ad9a289009a607d6d7fe19c854 Mon Sep 17 00:00:00 2001 From: Christopher Puschmann Date: Mon, 1 Apr 2024 19:00:29 +0200 Subject: [PATCH] Update README to include new features and implemented RFCs * Add newly added features and RFCs to the list * Removed the Travis CI link as it has been replaced with Github Actions --- README.md | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 3966a75b..06a9a17f 100644 --- a/README.md +++ b/README.md @@ -1,18 +1,22 @@ [![GoDoc](https://godoc.org/github.com/go-ldap/ldap?status.svg)](https://godoc.org/github.com/go-ldap/ldap) -[![Build Status](https://travis-ci.org/go-ldap/ldap.svg)](https://travis-ci.org/go-ldap/ldap) # Basic LDAP v3 functionality for the GO programming language. The library implements the following specifications: - - https://tools.ietf.org/html/rfc4511 for basic operations - - https://tools.ietf.org/html/rfc3062 for password modify operation - - https://tools.ietf.org/html/rfc4514 for distinguished names parsing + - https://datatracker.ietf.org/doc/html/rfc4511 for basic operations + - https://datatracker.ietf.org/doc/html/rfc3062 for password modify operation + - https://datatracker.ietf.org/doc/html/rfc4514 for distinguished names parsing + - https://datatracker.ietf.org/doc/html/rfc4533 for Content Synchronization Operation + - https://datatracker.ietf.org/doc/html/draft-armijo-ldap-treedelete-02 for Tree Delete Control + - https://datatracker.ietf.org/doc/html/rfc2891 for Server Side Sorting of Search Results + - https://datatracker.ietf.org/doc/html/rfc4532 for WhoAmI requests ## Features: - - Connecting to LDAP server (non-TLS, TLS, STARTTLS) - - Binding to LDAP server - - Searching for entries + - Connecting to LDAP server (non-TLS, TLS, STARTTLS, through a custom dialer) + - Binding to LDAP server (Simple Bind, GSSAPI, SASL) + - "Who Am I" Requests / Responses + - Searching for entries (normal and asynchronous) - Filter Compile / Decompile - Paging Search Results - Modify Requests / Responses