Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Main
Synchronet
Commits
8e231552
Commit
8e231552
authored
5 years ago
by
rswindell
Browse files
Options
Downloads
Patches
Plain Diff
Extend the maximum user password length from 8 to 40 characters.
Added more user flag definitions (not currently used here).
parent
42fc3c98
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/sbbs3/useredit/MainFormUnit.pas
+14
-8
14 additions, 8 deletions
src/sbbs3/useredit/MainFormUnit.pas
with
14 additions
and
8 deletions
src/sbbs3/useredit/MainFormUnit.pas
+
14
−
8
View file @
8e231552
...
...
@@ -254,7 +254,7 @@ const { String lengths }
LEN_COMP
=
30
;
{ User computer description }
LEN_COMMENT
=
60
;
{ User comment }
LEN_NETMAIL
=
60
;
{ NetMail forwarding address }
LEN_PASS
=
8
;
{ User password }
LEN_
OLD
PASS
=
8
;
{ User password }
LEN_PHONE
=
12
;
{ User phone number }
LEN_BIRTH
=
8
;
{ Birthday in xx/xx/YY format }
LEN_ADDRESS
=
30
;
{ User address }
...
...
@@ -264,9 +264,9 @@ const { String lengths }
LEN_FDESC
=
58
;
{ File description }
LEN_FCDT
=
9
;
{ 9 digits for file credit values }
LEN_TITLE
=
70
;
{ Message title }
LEN_MAIN_CMD
=
40
;
{
Storage in user.dat for custom commands
}
LEN_
XFER_CMD
=
40
;
LEN_SCAN_CMD
=
35
;
LEN_MAIN_CMD
=
40
;
{
unused
}
LEN_
PASS
=
40
;
{ password }
LEN_SCAN_CMD
=
35
;
{ unused }
LEN_IPADDR
=
45
;
LEN_CID
=
25
;
{ Caller ID (phone number) }
LEN_ARSTR
=
40
;
{ Max length of Access Requirement string }
...
...
@@ -290,8 +290,8 @@ const
U_LOCATION
=
U_ADDRESS
+
LEN_ADDRESS
;
U_ZIPCODE
=
U_LOCATION
+
LEN_LOCATION
;
U_PASS
=
U_ZIPCODE
+
LEN_ZIPCODE
+
2
;
U_PHONE
=
U_PASS
+
8
;
{ Offset to phone-number }
U_
OLD
PASS
=
U_ZIPCODE
+
LEN_ZIPCODE
+
2
;
U_PHONE
=
U_
OLD
PASS
+
LEN_OLDPASS
;
{ Offset to phone-number }
U_BIRTH
=
U_PHONE
+
12
;
{ Offset to users birthday }
U_MODEM
=
U_BIRTH
+
8
;
U_LASTON
=
U_MODEM
+
8
;
...
...
@@ -333,8 +333,8 @@ const
U_CURDIR
=
U_CURSUB
+
8
;
{ Current dir (internal code }
U_CMDSET
=
U_CURDIR
+
8
;
{ unused }
U_MAIN_CMD
=
U_CMDSET
+
2
+
2
;
{ unused }
U_
XFER_CMD
=
U_MAIN_CMD
+
LEN_MAIN_CMD
;
{
unuse
d }
U_SCAN_CMD
=
U_
XFER_CMD
+
LEN_XFER_CMD
+
2
;
{ unused }
U_
PASS
=
U_MAIN_CMD
+
LEN_MAIN_CMD
;
{
passwor
d }
U_SCAN_CMD
=
U_
PASS
+
LEN_PASS
+
2
;
{ unused }
U_IPADDR
=
U_SCAN_CMD
+
LEN_SCAN_CMD
;
{ unused }
U_FREECDT
=
U_IPADDR
+
LEN_IPADDR
+
2
;
U_FLAGS3
=
U_FREECDT
+
10
;
{ Flag set #3 }
...
...
@@ -374,6 +374,12 @@ const
AUTOHANG
=(
1
shl
20
);
{ Auto-hang-up after transfer }
WIP
=(
1
shl
21
);
{ Supports WIP terminal emulation }
AUTOLOGON
=(
1
shl
22
);
{ AutoLogon via IP }
HTML
=(
1
shl
23
);
{ Using Zuul/HTML terminal }
NOPAUSESPIN
=(
1
shl
24
);
{ No spinning cursor at pause prompt }
CTERM_FONTS
=(
1
shl
25
);
{ Loadable fonts are supported }
PETSCII
=(
1
shl
26
);
{ Commodore PET/CBM terminal }
SWAP_DELETE
=(
1
shl
27
);
{ Swap Delete and Backspace keys }
ICE_COLOR
=(
1
shl
28
);
{ Bright background color support }
{ Bit values for user_chat }
const
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment