FS-4691 gsmopen: patch from Ivan Mironov allowing for longer device names, useful for symlinks created by udev
This commit is contained in:
parent
85542799f0
commit
92d44e5023
|
@ -331,7 +331,7 @@ struct private_object {
|
||||||
unsigned long ib_failed_calls;
|
unsigned long ib_failed_calls;
|
||||||
unsigned long ob_failed_calls;
|
unsigned long ob_failed_calls;
|
||||||
|
|
||||||
char controldevice_name[50]; /*!< \brief name of the serial device controlling the interface, possibly none */
|
char controldevice_name[512]; /*!< \brief name of the serial device controlling the interface, possibly none */
|
||||||
int controldevprotocol; /*!< \brief which protocol is used for serial control of this interface */
|
int controldevprotocol; /*!< \brief which protocol is used for serial control of this interface */
|
||||||
char controldevprotocolname[50]; /*!< \brief name of the serial device controlling protocol, one of "at" "fbus2" "no_serial" "alsa_voicemodem" */
|
char controldevprotocolname[50]; /*!< \brief name of the serial device controlling protocol, one of "at" "fbus2" "no_serial" "alsa_voicemodem" */
|
||||||
int controldevfd; /*!< \brief serial controlling file descriptor for this interface */
|
int controldevfd; /*!< \brief serial controlling file descriptor for this interface */
|
||||||
|
@ -469,7 +469,7 @@ struct private_object {
|
||||||
int network_creg_not_supported;
|
int network_creg_not_supported;
|
||||||
char creg[128];
|
char creg[128];
|
||||||
|
|
||||||
char controldevice_audio_name[50];
|
char controldevice_audio_name[512];
|
||||||
int controldev_audio_fd;
|
int controldev_audio_fd;
|
||||||
int controldevice_audio_speed;
|
int controldevice_audio_speed;
|
||||||
int controldev_audio_dead;
|
int controldev_audio_dead;
|
||||||
|
|
Loading…
Reference in New Issue