Salad  1.0.15
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Groups Pages
network.h
Go to the documentation of this file.
1 /*
2  * Salad - An assortment of useful C stuff
3  * Copyright (C) 2016 Lloyd Dilley
4  * http://www.dilley.me/
5  *
6  * This file is part of Salad.
7  *
8  * Salad is free software: you can redistribute it and/or modify
9  * it under the terms of the GNU Lesser General Public License
10  * as published by the Free Software Foundation; either version
11  * 3 of the License, or (at your option) any later version.
12  *
13  * Salad is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with Salad. If not, see <http://www.gnu.org/licenses/>.
20  */
21 
22 #ifndef NETWORK_H
23 #define NETWORK_H
24 
25 #include "salad/types.h"
26 
45 SLD_SSINT sld_network_connect(char *host, SLD_USINT port);
46 
56 
66 
76 SLD_ULINT sld_network_send(char *packet);
77 
80 #endif /* NETWORK_H */
SLD_ULINT sld_network_receive()
Receives data from a network connection.
unsigned short int SLD_USINT
Definition: types.h:50
SLD_SSINT sld_network_connect(char *host, SLD_USINT port)
Connects to a destination host on the specified port.
signed short int SLD_SSINT
Definition: types.h:47
SLD_ULINT sld_network_send(char *packet)
Sends data to a destination host.
unsigned long int SLD_ULINT
Definition: types.h:62
SLD_SSINT sld_network_disconnect()
Terminates a connection.