このバックエンドは主にプロトタイプで利用するように意図しています。
これらのオプションは与えられた LDAP 操作への応答で実行するプログラムのパス名と引数を指定します。 以下にあげる各オプションの後にはプログラムが 受け取る入力行が何かを示しています。
ABANDON msgid: <message ID of operation to abandon> <repeat { "suffix:" <database suffix DN> }> pid: <process ID of operation to abandon>
ADD msgid: <message id> <repeat { "suffix:" <database suffix DN> }> <entry in LDIF format>
BIND msgid: <message id> <repeat { "suffix:" <database suffix DN> }> dn: <DN> method: <method number> credlen: <length of <credentials>> cred: <credentials>
COMPARE msgid: <message id> <repeat { "suffix:" <database suffix DN> }> dn: <DN> <attribute>: <value>
DELETE msgid: <message id> <repeat { "suffix:" <database suffix DN> }> dn: <DN>
MODIFY msgid: <message id> <repeat { "suffix:" <database suffix DN> }> #dn: <DN> <repeat { <"add"/"delete"/"replace">: <attribute> <repeat { <attribute>: <value> }> - }>
MODRDN msgid: <message id> <repeat { "suffix:" <database suffix DN> }> dn: <DN> newrdn: <new RDN> deleteoldrdn: <0 or 1> <if new superior is specified: "newSuperior: <DN>">
SEARCH msgid: <message id> <repeat { "suffix:" <database suffix DN> }> base: <base DN> scope: <0-2, see ldap.h> deref: <0-3, see ldap.h> sizelimit: <size limit> timelimit: <time limit> filter: <filter> attrsonly: <0 or 1> attrs: <"all" or space-separated attribute list>
UNBIND msgid: <message id> <repeat { "suffix:" <database suffix DN> }> dn: <bound DN>
バックエンドに処理してほしいコマンドを設定行に指定するだけです。 コマンドの指定されていない操作を行うと "unwilling to perform" エラー となって拒絶されます。
コマンド(abandon と unbind を除く)は以下を出力すべきです。
RESULT code: <integer> matched: <matched DN> info: <text>