| summaryrefslogtreecommitdiff | 
diff options
| author | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2022-02-17 19:36:01 +0100 | 
|---|---|---|
| committer | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2022-02-17 19:36:01 +0100 | 
| commit | ee38065c01d1c679304d7b85a372e0264cd36aa1 (patch) | |
| tree | ad1e397989e099dc9460879a873163eb036587fe /src/meta_net | |
| parent | 197336db213195e015a3f301473eeb29f23a2d49 (diff) | |
Diffstat (limited to 'src/meta_net')
| -rw-r--r-- | src/meta_net/meta_net.h | 2 | ||||
| -rw-r--r-- | src/meta_net/meta_net_handle_reply.c | 5 | ||||
| -rw-r--r-- | src/meta_net/meta_net_select.c | 2 | 
3 files changed, 2 insertions, 7 deletions
| diff --git a/src/meta_net/meta_net.h b/src/meta_net/meta_net.h index 0673f74..6f51964 100644 --- a/src/meta_net/meta_net.h +++ b/src/meta_net/meta_net.h @@ -64,7 +64,6 @@ void JH_meta_net_handle_reply  int JH_meta_net_pre_select  (     struct JH_meta_net socket [const restrict static 1], -   const struct JH_parameters params [const restrict static 1],     fd_set in [const restrict static 1],     fd_set out [const restrict static 1],     int max_fd [const restrict static 1] @@ -73,7 +72,6 @@ int JH_meta_net_pre_select  int JH_meta_net_post_select  (     struct JH_meta_net socket [const restrict static 1], -   const struct JH_parameters params [const restrict static 1],     fd_set in [const restrict static 1],     fd_set out [const restrict static 1]  ); diff --git a/src/meta_net/meta_net_handle_reply.c b/src/meta_net/meta_net_handle_reply.c index 83ee654..6e2ff60 100644 --- a/src/meta_net/meta_net_handle_reply.c +++ b/src/meta_net/meta_net_handle_reply.c @@ -8,8 +8,7 @@  static void handle_generated_reply  (     struct JH_meta_net socket [const restrict static 1], -   struct JH_irc irc [const restrict static 1], -   const struct JH_parameters params [const restrict static 1] +   struct JH_irc irc [const restrict static 1]  )  {     if @@ -169,7 +168,7 @@ void JH_meta_net_handle_reply           )        )        { -         handle_generated_reply(socket, irc, params); +         handle_generated_reply(socket, irc);        }        else if        ( diff --git a/src/meta_net/meta_net_select.c b/src/meta_net/meta_net_select.c index f126176..7107d86 100644 --- a/src/meta_net/meta_net_select.c +++ b/src/meta_net/meta_net_select.c @@ -6,7 +6,6 @@  int JH_meta_net_pre_select  (     struct JH_meta_net socket [const restrict static 1], -   const struct JH_parameters params [const restrict static 1],     fd_set in [const restrict static 1],     fd_set out [const restrict static 1],     int max_fd [const restrict static 1] @@ -30,7 +29,6 @@ int JH_meta_net_pre_select  int JH_meta_net_post_select  (     struct JH_meta_net socket [const restrict static 1], -   const struct JH_parameters params [const restrict static 1],     fd_set in [const restrict static 1],     fd_set out [const restrict static 1]  ) | 


