Skip to content
This repository was archived by the owner on May 14, 2024. It is now read-only.

Commit 58ae926

Browse files
committed
Add missing referral tag code
1 parent 7ff4064 commit 58ae926

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

index.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,12 @@ const operations = Object.freeze({
2929
LDAP_RES_MODRDN: 0x6d,
3030
LDAP_RES_COMPARE: 0x6f,
3131
LDAP_RES_EXTENSION: 0x78,
32-
LDAP_RES_INTERMEDIATE: 0x79
32+
LDAP_RES_INTERMEDIATE: 0x79,
33+
34+
// This is really an operation. It's a specific
35+
// sequence tag. But the referral situation is
36+
// so specific it makes more sense to put it here.
37+
LDAP_RES_REFERRAL: 0xa3
3338
})
3439

3540
/**

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ldapjs/protocol",
3-
"version": "1.2.0",
3+
"version": "1.2.1",
44
"description": "Provides constants for LDAP ASN.1 tags and values.",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)