Files
@ e17b86eab31c
Branch filter:
Location: DistRen/src/server/listen.h - annotation
e17b86eab31c
1.5 KiB
text/plain
reorganized listening functions, socket listen()ed to
e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c e17b86eab31c | /*
Copyright 2009 Nathan Phillip Brink
This file is a part of DistRen.
DistRen is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
DistRen 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 Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with DistRen. If not, see <http://www.gnu.org/licenses/>.
*/
struct distrend_clientset;
struct distrend_listen;
#ifndef _DISTREN_LISTEN_H
#define _DISTREN_LISTEN_H
#include "distrend.h"
struct distrend_listen
{
int port;
int sock;
};
/**
initializes the listens and clientset
@param config the configuration from distrend
@param clients a pointer to a struct distrend_clientset pointer which will be set to memory allocated for the clientset
*/
int distrend_listen(struct distrend_config *config, struct distrend_clientset **clients);
/**
cleans listening socket. Unnecessary for a working server, currently a stub.
*/
int distrend_unlisten(struct distrend_listen *listens, struct distrend_clientset *clients);
/**
This is probably just NOT a placeholder for remotio
*/
void remotio_send_to_client();
#endif
|