Adding plain text password authentication for testing.

This commit is contained in:
lotodore
2009-09-19 20:49:17 +00:00
parent 97e01d6b80
commit 4856dc2a45
70 changed files with 277 additions and 222 deletions
+48 -6
View File
@@ -40,6 +40,38 @@ memb_playerName_constraint_1(asn_TYPE_descriptor_t *td, const void *sptr,
}
}
static int
memb_password_constraint_1(asn_TYPE_descriptor_t *td, const void *sptr,
asn_app_constraint_failed_f *ctfailcb, void *app_key) {
const UTF8String_t *st = (const UTF8String_t *)sptr;
size_t size;
if(!sptr) {
_ASN_CTFAIL(app_key, td, sptr,
"%s: value not given (%s:%d)",
td->name, __FILE__, __LINE__);
return -1;
}
size = UTF8String_length(st);
if((ssize_t)size < 0) {
_ASN_CTFAIL(app_key, td, sptr,
"%s: UTF-8: broken encoding (%s:%d)",
td->name, __FILE__, __LINE__);
return -1;
}
if((size >= 1 && size <= 32)) {
/* Constraint check succeeded */
return 0;
} else {
_ASN_CTFAIL(app_key, td, sptr,
"%s: constraint failed (%s:%d)",
td->name, __FILE__, __LINE__);
return -1;
}
}
static asn_TYPE_member_t asn_MBR_AuthenticatedLogin_1[] = {
{ ATF_NOFLAGS, 0, offsetof(struct AuthenticatedLogin, playerName),
(ASN_TAG_CLASS_UNIVERSAL | (12 << 2)),
@@ -50,6 +82,15 @@ static asn_TYPE_member_t asn_MBR_AuthenticatedLogin_1[] = {
0,
"playerName"
},
{ ATF_NOFLAGS, 0, offsetof(struct AuthenticatedLogin, password),
(ASN_TAG_CLASS_UNIVERSAL | (12 << 2)),
0,
&asn_DEF_UTF8String,
memb_password_constraint_1,
0, /* PER is not compiled, use -gen-PER */
0,
"password"
},
{ ATF_POINTER, 1, offsetof(struct AuthenticatedLogin, avatar),
(ASN_TAG_CLASS_UNIVERSAL | (4 << 2)),
0,
@@ -64,17 +105,18 @@ static ber_tlv_tag_t asn_DEF_AuthenticatedLogin_tags_1[] = {
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
};
static asn_TYPE_tag2member_t asn_MAP_AuthenticatedLogin_tag2el_1[] = {
{ (ASN_TAG_CLASS_UNIVERSAL | (4 << 2)), 1, 0, 0 }, /* avatar at 93 */
{ (ASN_TAG_CLASS_UNIVERSAL | (12 << 2)), 0, 0, 0 } /* playerName at 92 */
{ (ASN_TAG_CLASS_UNIVERSAL | (4 << 2)), 2, 0, 0 }, /* avatar at 94 */
{ (ASN_TAG_CLASS_UNIVERSAL | (12 << 2)), 0, 0, 1 }, /* playerName at 92 */
{ (ASN_TAG_CLASS_UNIVERSAL | (12 << 2)), 1, -1, 0 } /* password at 93 */
};
static asn_SEQUENCE_specifics_t asn_SPC_AuthenticatedLogin_specs_1 = {
sizeof(struct AuthenticatedLogin),
offsetof(struct AuthenticatedLogin, _asn_ctx),
asn_MAP_AuthenticatedLogin_tag2el_1,
2, /* Count of tags in the map */
3, /* Count of tags in the map */
0, 0, 0, /* Optional elements (not needed) */
1, /* Start extensions */
3 /* Stop extensions */
2, /* Start extensions */
4 /* Stop extensions */
};
asn_TYPE_descriptor_t asn_DEF_AuthenticatedLogin = {
"AuthenticatedLogin",
@@ -96,7 +138,7 @@ asn_TYPE_descriptor_t asn_DEF_AuthenticatedLogin = {
/sizeof(asn_DEF_AuthenticatedLogin_tags_1[0]), /* 1 */
0, /* No PER visible constraints */
asn_MBR_AuthenticatedLogin_1,
2, /* Elements count */
3, /* Elements count */
&asn_SPC_AuthenticatedLogin_specs_1 /* Additional specs */
};