File: sockets.h

package info (click to toggle)
xt-toolbuslib 0.5.1-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 516 kB
  • ctags: 831
  • sloc: ansic: 5,255; sh: 361; makefile: 89
file content (41 lines) | stat: -rw-r--r-- 1,429 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*

    ToolBus -- The ToolBus Application Architecture
    Copyright (C) 1998-2000  Stichting Mathematisch Centrum, Amsterdam, 
                             The  Netherlands.

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program 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 General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA

*/
#ifndef __SOCKETS_H__
#define __SOCKETS_H__

#include <sys/socket.h>

void TBdestroyPort(int);
int  putInt(int, const char *, int);
int  getInt(int, const char *);
int  createWellKnownSocket(char *, int);
int  connectWellKnownSocket(char *, int);
int  accept_in_interval(int, struct sockaddr *, int *);
int  mk_server_ports(int local_port_only);
void tb_sleep(int sec, int usec);

extern int buf_size;
extern int WellKnownSocketPort;
extern int WellKnownGlobalSocket;
extern int WellKnownLocalSocket;

#endif /* __SOCKETS_H__ */