]> andersk Git - libfaim.git/blobdiff - aim_txqueue.c
- Fri Nov 10 08:24:34 UTC 2000
[libfaim.git] / aim_txqueue.c
index 6f6b3c10d301313f1e354c8d81ffe2e8ff1cf454..9871f938c523691feec5ab0905175e4eb8ec04d2 100644 (file)
@@ -151,6 +151,19 @@ faim_internal int aim_tx_enqueue__immediate(struct aim_session_t *sess, struct c
   return 0;
 }
 
+faim_internal int aim_tx_enqueue(struct aim_session_t *sess, struct command_tx_struct *command)
+{
+  /*
+   * If we want to send a connection thats inprogress, we have to force
+   * them to use the queue based version. Otherwise, use whatever they
+   * want.
+   */
+  if (command && command->conn && (command->conn->status & AIM_CONN_STATUS_INPROGRESS)) {
+    return aim_tx_enqueue__queuebased(sess, command);
+  }
+  return (*sess->tx_enqueue)(sess, command);
+}
+
 /* 
  *  aim_get_next_txseqnum()
  *
@@ -347,6 +360,9 @@ faim_export int aim_tx_flushqueue(struct aim_session_t *sess)
     /* only process if its unlocked and unsent */
     if (!cur->lock && !cur->sent) {
 
+      if (cur->conn && (cur->conn->status & AIM_CONN_STATUS_INPROGRESS))
+       continue;
+
       /*
        * And now for the meager attempt to force transmit
        * latency and avoid missed messages.
This page took 0.030826 seconds and 4 git commands to generate.