mirror of
https://github.com/sheumann/AFPBridge.git
synced 2024-10-31 09:15:11 +00:00
350204f78a
This allows more options, and it avoids having to manually specify the strings for all option combinations.
17 lines
376 B
C
17 lines
376 B
C
#pragma noroot
|
|
|
|
#include "afpoptions.h"
|
|
|
|
/*
|
|
* These are option codes that can be used in the zone string, e.g.
|
|
* "AFP over TCP (LR,22)". Note that the zone string is limited to 32
|
|
* characters. With 2-character options, we can use up to six at once.
|
|
*/
|
|
AFPOptions afpOptions[] =
|
|
{
|
|
{"LR", fLargeReads},
|
|
{"22", fForceAFP22},
|
|
{"FS", fFakeSleep},
|
|
{0, 0}
|
|
};
|