Blame src/udp-serv.h

Packit 549fdc
/*
Packit 549fdc
 * Copyright (C) 2011-2012 Free Software Foundation, Inc.
Packit 549fdc
 *
Packit 549fdc
 * This file is part of GnuTLS.
Packit 549fdc
 *
Packit 549fdc
 * GnuTLS is free software: you can redistribute it and/or modify
Packit 549fdc
 * it under the terms of the GNU General Public License as published by
Packit 549fdc
 * the Free Software Foundation, either version 3 of the License, or
Packit 549fdc
 * (at your option) any later version.
Packit 549fdc
 *
Packit 549fdc
 * GnuTLS is distributed in the hope that it will be useful,
Packit 549fdc
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 549fdc
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 549fdc
 * GNU General Public License for more details.
Packit 549fdc
 *
Packit 549fdc
 * You should have received a copy of the GNU General Public License
Packit 549fdc
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
Packit 549fdc
 */
Packit 549fdc
Packit 549fdc
#include <gnutls/dtls.h>
Packit 549fdc
Packit 549fdc
void udp_server(const char *name, int port, int mtu);
Packit 549fdc
gnutls_session_t initialize_session(int dtls);
Packit 549fdc
const char *human_addr(const struct sockaddr *sa, socklen_t salen,
Packit 549fdc
		       char *buf, size_t buflen);
Packit 549fdc
int wait_for_connection(void);
Packit 549fdc
int listen_socket(const char *name, int listen_port, int socktype);