Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Field renaming in the plugin struct to cleanup; raw is now a field of the socket...
[simgrid.git] / src / gras / Transport / transport_private.h
1 /* $Id$ */
2
3 /* transport - low level communication (send/receive bunches of bytes)      */
4
5 /* module's private interface masked even to other parts of GRAS.           */
6
7 /* Authors: Martin Quinson                                                  */
8 /* Copyright (C) 2004 Martin Quinson.                                       */
9
10 /* This program is free software; you can redistribute it and/or modify it
11    under the terms of the license (GNU LGPL) which comes with this package. */
12
13 #ifndef GRAS_TRP_PRIVATE_H
14 #define GRAS_TRP_PRIVATE_H
15
16 #include "gras_private.h"
17 #include "Transport/transport_interface.h"
18
19 extern gras_dynar_t *_gras_trp_sockets; /* all existing sockets */
20
21 /**
22  * s_gras_socket:
23  * 
24  * Description of a socket.
25  */
26
27 struct s_gras_socket  {
28   gras_trp_plugin_t *plugin;
29     
30   int incoming :1; /* true if we can read from this sock */
31   int outgoing :1; /* true if we can write on this sock */
32   int accepting :1; /* true if master incoming sock in tcp */
33   int raw :1; /* true if this is an experiment socket instead of messaging */
34    
35   int  sd; 
36   int  port; /* port on this side */
37   int  peer_port; /* port on the other side */
38   char *peer_name; /* hostname of the other side */
39
40   void *specific; /* plugin specific data */
41 };
42         
43 gras_error_t gras_trp_socket_new(int incomming,
44                                  gras_socket_t **dst);
45
46 /* The drivers */
47 typedef gras_error_t (*gras_trp_setup_t)(gras_trp_plugin_t *dst);
48
49 gras_error_t gras_trp_tcp_setup(gras_trp_plugin_t *plug);
50 gras_error_t gras_trp_file_setup(gras_trp_plugin_t *plug);
51 gras_error_t gras_trp_sg_setup(gras_trp_plugin_t *plug);
52
53 #endif /* GRAS_TRP_PRIVATE_H */