added network/event sync
authorhackbard <hackbard>
Sun, 9 May 2004 14:01:43 +0000 (14:01 +0000)
committerhackbard <hackbard>
Sun, 9 May 2004 14:01:43 +0000 (14:01 +0000)
src/ivac.c

index 9645c33..23d59b1 100644 (file)
@@ -183,11 +183,16 @@ int ivac_event_cb(t_event *event,void *ptr) {
     }
   }
 
-  /* receive info */
-  for(channel=0;channel<MAX_CONNECTIONS;channel++)
-    if(ivac->net.connection[channel].status&C_ESTABL)
+  for(channel=0;channel<MAX_CONNECTIONS;channel++) {
+    if(ivac->net.connection[channel].status&C_ESTABL) {
+      /* receive info */
       if(FD_ISSET(ivac->net.connection[channel].fd,&(event->rfds)))
         ivac_receive_info(channel,ivac);
+      /* sync network/event api */
+      if(!(FD_ISSET(ivac->net.connection[channel].fd,&(event->rfds_o))))
+        event_math(ivac->net.connection[channel].fd,event,READ,ADD);
+    }
+  } 
 
   /* user interaction */
   if(FD_ISSET(0,&(event->rfds)))