| 1130 | int bakshowmenuonstartup = -1; |
| 1131 | static char *aaconnect = NULL; |
| 1132 | void afterauth() |
| 1133 | { |
| 1134 | // currently only for delayed connectprotocol |
| 1135 | if(aaconnect) |
| 1136 | { |
| 1137 | conoutf("\fUAfter Auth"); |
| 1138 | if(bakshowmenuonstartup > -1) |
| 1139 | { |
| 1140 | alias("showmenuonstartup",bakshowmenuonstartup==1?"1":"0",false,false); |
| 1141 | } |
| 1142 | } |
| 1143 | if(aaconnect) |
| 1144 | { |
| 1145 | connectprotocol(aaconnect); |
| 1146 | DELSTRING(aaconnect); |
| 1147 | } |
| 1148 | } |
| 1149 | |
| 1150 | #ifdef THISISNOTDEFINED //WIN32 |
| 1151 | static char *parsecommandline(const char *src, vector<char *> &args) |
no test coverage detected