<div class="content" name="ASYNCCONFIG" uuid="f6c52c7c-8861-4ce6-88f1-8c84e4f2026a"><p>The asynchronous protocol driver&#39;s configuration structure.</p><dl>
<dd>
<div><pre> typedef struct _ASYNCCONFIG {
   DEVICENAME DeviceName;
   MODEMNAME ModemName;
   ULONG BaudRate;
   ULONG Parity;
   ULONG StopBits;
   ULONG ByteSize;
   ULONG fEnableDsrSensitivity  :1;
   ULONG fConnectionDriver  :1;
   FLOWCONTROLCONFIG FlowControl;
   CONNECTCONFIG Connect;
 } ASYNCCONFIG,
  *PASYNCCONFIG;
</pre></div>
</dd></dl><p><b>DeviceName:</b>  The device&#39;s name.</p><p><b>ModemName:</b>  The modem&#39;s name.</p><p><b>BaudRate:</b>  The baud rate of the
modem.</p><p><b>Parity:</b>  The parity setting.</p><p><b>StopBits:</b>  The number of stop bits.</p><p><b>ByteSize:</b>  The size of a byte.</p><p><b>fEnableDsrSensitivity:</b>  TRUE
indicates enable Data Set Ready (DSR) sensitivity, FALSE otherwise.</p><p><b>fConnectionDriver:</b>  Set to TRUE if
there is a connection driver, FALSE otherwise.</p><p><b>FlowControl:</b>  The flow control
setting of the modem.</p><p><b>Connect:</b>  The connect configuration.</p></div>