2012-06-23 22:52:51 +00:00
|
|
|
/* $Id: receivedata.h,v 1.3 2012/06/23 22:34:47 nanard Exp $ */
|
2011-09-27 20:25:35 +00:00
|
|
|
/* Project: miniupnp
|
|
|
|
* http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/
|
|
|
|
* Author: Thomas Bernard
|
2012-06-23 22:52:51 +00:00
|
|
|
* Copyright (c) 2011-2012 Thomas Bernard
|
2011-09-27 20:25:35 +00:00
|
|
|
* This software is subjects to the conditions detailed
|
|
|
|
* in the LICENCE file provided within this distribution */
|
2012-09-20 20:52:51 +00:00
|
|
|
#ifndef RECEIVEDATA_H_INCLUDED
|
|
|
|
#define RECEIVEDATA_H_INCLUDED
|
2011-09-27 20:25:35 +00:00
|
|
|
|
2012-03-01 01:51:24 +00:00
|
|
|
/* Reads data from the specified socket.
|
|
|
|
* Returns the number of bytes read if successful, zero if no bytes were
|
2011-09-27 20:25:35 +00:00
|
|
|
* read or if we timed out. Returns negative if there was an error. */
|
2012-06-23 22:52:51 +00:00
|
|
|
int receivedata(int socket,
|
|
|
|
char * data, int length,
|
|
|
|
int timeout, unsigned int * scope_id);
|
2011-09-27 20:25:35 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|