auth-stream.c revision 221351ed85c839e0b03d82c47654c3d17202e3db
/* Copyright (c) 2005-2008 Dovecot authors, see the included COPYING file */
#include "common.h"
#include "str.h"
#include "ostream.h"
#include "auth-request.h"
#include "auth-stream.h"
struct auth_stream_reply {
};
{
struct auth_stream_reply *reply;
return reply;
}
{
}
/* escape dangerous characters in the value */
switch (*value) {
case '\001':
break;
case '\t':
break;
case '\n':
break;
default:
break;
}
}
}
}
{
i = 0;
while (str[i] != '\0') {
start = i;
for (; str[i] != '\0'; i++) {
if (str[i] == '\t') {
i++;
break;
}
}
break;
}
}
}
{
}
{
}
{
}
{
}
{
}
{
}