/*
Authors:
Pavel Březina <pbrezina@redhat.com>
Copyright (C) 2016 Red Hat
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <ldb.h>
#include <talloc.h>
#include <errno.h>
#include "responder/common/cache_req/cache_req_private.h"
struct cache_req_result *new_result,
struct cache_req_result ***_results,
{
/* Make space for new results. */
idx = *_num_results;
count + 1);
return ENOMEM;
}
*_num_results = count;
return EOK;
}
struct cache_req_result *
struct sss_domain_info *domain,
struct ldb_result *ldb_result,
const char *lookup_name,
const char *well_known_domain)
{
return NULL;
}
if (lookup_name != NULL) {
return NULL;
}
}
if (well_known_domain != NULL) {
return NULL;
}
}
return result;
}
struct sss_domain_info *domain,
struct ldb_result *ldb_result,
const char *name,
struct cache_req_result ***_results,
{
"Found %u entries in domain %s\n",
return ENOMEM;
}
}
return ret;
}
struct ldb_result *
struct ldb_message **ldb_msgs,
{
return NULL;
}
if (ldb_result == NULL) {
return NULL;
}
ldb_msg_count + 1);
return NULL;
}
for (size_t i = 0; i < ldb_msg_count; i++) {
}
return ldb_result;
}
struct ldb_result *
struct ldb_message *ldb_msg)
{
return NULL;
}
if (ldb_result == NULL) {
return NULL;
}
return NULL;
}
return ldb_result;
}
struct cache_req_result *
struct sss_domain_info *domain,
struct ldb_message *ldb_msg,
const char *lookup_name,
const char *well_known_domain)
{
return NULL;
}
if (ldb_result == NULL) {
return NULL;
}
return NULL;
}
return result;
}
struct cache_req_result *
struct cache_req_result *result,
{
unsigned int left;
goto done;
}
goto done;
}
if (ldb_result == NULL) {
goto done;
}
done:
return NULL;
}
return out;
}