cctools
link_auth.h
1/*
2Copyright (C) 2022 The University of Notre Dame
3This software is distributed under the GNU General Public License.
4See the file COPYING for details.
5*/
6
7#ifndef LINK_AUTH_H
8#define LINK_AUTH_H
9
10#include "link.h"
11
12/* @file link_auth.h Simple authentication routines. */
13
21int link_auth_password( struct link *link, const char *password, time_t stoptime );
22
23#endif