| 951 0 \ |
951 0 \ |
| 952 } |
952 } |
| 953 |
953 |
| 954 |
954 |
| 955 struct aim_icbmparameters { |
955 struct aim_icbmparameters { |
| 956 unsigned short maxchan; |
956 fu16_t maxchan; |
| 957 unsigned long flags; /* AIM_IMPARAM_FLAG_ */ |
957 fu32_t flags; /* AIM_IMPARAM_FLAG_ */ |
| 958 unsigned short maxmsglen; /* message size that you will accept */ |
958 fu16_t maxmsglen; /* message size that you will accept */ |
| 959 unsigned short maxsenderwarn; /* this and below are *10 (999=99.9%) */ |
959 fu16_t maxsenderwarn; /* this and below are *10 (999=99.9%) */ |
| 960 unsigned short maxrecverwarn; |
960 fu16_t maxrecverwarn; |
| 961 unsigned long minmsginterval; /* in milliseconds? */ |
961 fu32_t minmsginterval; /* in milliseconds? */ |
| 962 }; |
962 }; |
| 963 |
963 |
| 964 faim_export int aim_reqicbmparams(aim_session_t *sess); |
964 faim_export int aim_reqicbmparams(aim_session_t *sess); |
| 965 faim_export int aim_seticbmparam(aim_session_t *sess, struct aim_icbmparameters *params); |
965 faim_export int aim_seticbmparam(aim_session_t *sess, struct aim_icbmparameters *params); |
| 966 |
966 |