]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
fix build by guessing types of missing values -feeling lucky
authorAnthony Minessale <anthm@freeswitch.org>
Wed, 8 Sep 2010 17:59:31 +0000 (12:59 -0500)
committerAnthony Minessale <anthm@freeswitch.org>
Wed, 8 Sep 2010 17:59:40 +0000 (12:59 -0500)
libs/spandsp/src/spandsp/private/t30.h
libs/spandsp/src/spandsp/t30.h

index 6e4ee0a70449821f113b5228a1c3b8f2821ffb47..e56753e07d9c2365ebc931eccaf2f97a7a7b2e44 100644 (file)
@@ -207,6 +207,13 @@ struct t30_state_s
     /*! \brief This is only used in full duplex (e.g. ISDN) modes. */
     int timer_t8;
 
+       /* These fields are guessed based on compiler error forensics, I added them to fix the build -anthm */
+       int remote_interrupts_allowed;
+       int rtp_events;
+       int rtn_events;
+       int retransmit_capable;
+       /* end guessed fields */
+
     /*! \brief TRUE once the far end FAX entity has been detected. */
     int far_end_detected;
 
index 9b01d3b62b87e010bce18d598cea035ed43086b1..9df7321abde675d71a78746dc17d4345c5a3da17 100644 (file)
@@ -682,6 +682,8 @@ SPAN_DECLARE(void) t30_get_transfer_statistics(t30_state_t *s, t30_stats_t *t);
     \param state TRUE to enable interrupt request, else FALSE. */
 SPAN_DECLARE(void) t30_local_interrupt_request(t30_state_t *s, int state);
 
+SPAN_DECLARE(void) t30_remote_interrupts_allowed(t30_state_t *s, int state);
+
 #if defined(__cplusplus)
 }
 #endif