This repository has been archived by the owner on Apr 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibgadu.h
1433 lines (1207 loc) · 44.9 KB
/
libgadu.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* $Id: libgadu.h,v 1.181 2005/06/25 06:49:19 szalik Exp $ */
/*
* (C) Copyright 2001-2003 Wojtek Kaniewski <[email protected]>
* Robert J. Wo¼ny <[email protected]>
* Arkadiusz Mi¶kiewicz <[email protected]>
* Tomasz Chiliñski <[email protected]>
* Piotr Wysocki <[email protected]>
* Dawid Jarosz <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License Version
* 2.1 as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307,
* USA.
*/
#ifndef __GG_LIBGADU_H
#define __GG_LIBGADU_H
#include "libgadu_dll.h"
#pragma pack(push, 1)
#ifdef __cplusplus
#ifdef _WIN32
//#pragma pack(push, 1)
#endif
extern "C" {
#endif
#include "libgadu-config.h"
#include <sys/types.h>
#include <stdio.h>
#include <stdarg.h>
#ifdef __GG_LIBGADU_HAVE_OPENSSL
#include <openssl/ssl.h>
#endif
/*
* typedef uin_t
*
* typ reprezentuj±cy numer osoby.
*/
typedef uint32_t uin_t;
/*
* ogólna struktura opisuj±ca ró¿ne sesje. przydatna w klientach.
*/
#define gg_common_head(x) \
int fd; /* podgl±dany deskryptor */ \
int check; /* sprawdzamy zapis czy odczyt */ \
int state; /* aktualny stan maszynki */ \
int error; /* kod b³êdu dla GG_STATE_ERROR */ \
int type; /* rodzaj sesji */ \
int id; /* identyfikator */ \
int timeout; /* sugerowany timeout w sekundach */ \
int (*callback)(x*); /* callback przy zmianach */ \
void (*destroy)(x*); /* funkcja niszczenia */
struct gg_common {
gg_common_head(struct gg_common)
};
struct gg_image_queue;
/*
* struct gg_session
*
* struktura opisuj±ca dan± sesjê. tworzona przez gg_login(), zwalniana
* przez gg_free_session().
*/
struct gg_session {
gg_common_head(struct gg_session)
int async; /* czy po³±czenie jest asynchroniczne */
int pid; /* pid procesu resolvera */
int port; /* port, z którym siê ³±czymy */
int seq; /* numer sekwencyjny ostatniej wiadomo¶ci */
int last_pong; /* czas otrzymania ostatniego ping/pong */
int last_event; /* czas otrzymania ostatniego pakietu */
struct gg_event *event; /* zdarzenie po ->callback() */
uint32_t proxy_addr; /* adres proxy, keszowany */
uint16_t proxy_port; /* port proxy */
uint32_t hub_addr; /* adres huba po resolvniêciu */
uint32_t server_addr; /* adres serwera, od huba */
uint32_t client_addr; /* adres klienta */
uint16_t client_port; /* port, na którym klient s³ucha */
uint32_t external_addr; /* adres zewnetrzny klienta */
uint16_t external_port; /* port zewnetrzny klienta */
uin_t uin; /* numerek klienta */
char *password; /* i jego has³o. zwalniane automagicznie */
int initial_status; /* pocz±tkowy stan klienta */
int status; /* aktualny stan klienta */
char *recv_buf; /* bufor na otrzymywane pakiety */
int recv_done; /* ile ju¿ wczytano do bufora */
int recv_left; /* i ile jeszcze trzeba wczytaæ */
int protocol_version; /* wersja u¿ywanego protoko³u */
char *client_version; /* wersja u¿ywanego klienta */
int last_sysmsg; /* ostatnia wiadomo¶æ systemowa */
char *initial_descr; /* pocz±tkowy opis stanu klienta */
void *resolver; /* wska¼nik na informacje resolvera */
char *header_buf; /* bufor na pocz±tek nag³ówka */
unsigned int header_done;/* ile ju¿ mamy */
#ifdef __GG_LIBGADU_HAVE_OPENSSL
SSL *ssl; /* sesja TLS */
SSL_CTX *ssl_ctx; /* kontekst sesji? */
#else
void *ssl; /* zachowujemy ABI */
void *ssl_ctx;
#endif
int image_size; /* maksymalny rozmiar obrazków w KiB */
char *userlist_reply; /* fragment odpowiedzi listy kontaktów */
int userlist_blocks; /* na ile kawa³ków podzielono listê kontaktów */
struct gg_image_queue *images; /* aktualnie wczytywane obrazki */
};
/*
* struct gg_http
*
* ogólna struktura opisuj±ca stan wszystkich operacji HTTP. tworzona
* przez gg_http_connect(), zwalniana przez gg_http_free().
*/
struct gg_http {
gg_common_head(struct gg_http)
int async; /* czy po³±czenie asynchroniczne */
int pid; /* pid procesu resolvera */
int port; /* port, z którym siê ³±czymy */
char *query; /* bufor zapytania http */
char *header; /* bufor nag³ówka */
int header_size; /* rozmiar wczytanego nag³ówka */
char *body; /* bufor otrzymanych informacji */
unsigned int body_size; /* oczekiwana ilo¶æ informacji */
void *data; /* dane danej operacji http */
char *user_data; /* dane u¿ytkownika, nie s± zwalniane przez gg_http_free() */
void *resolver; /* wska¼nik na informacje resolvera */
unsigned int body_done; /* ile ju¿ tre¶ci odebrano? */
};
#ifdef __GNUC__
#define GG_PACKED __attribute__ ((packed))
#else
#define GG_PACKED
#endif
#define GG_MAX_PATH 276
/*
* struct gg_file_info
*
* odpowiednik windowsowej struktury WIN32_FIND_DATA niezbêdnej przy
* wysy³aniu plików.
*/
struct gg_file_info {
uint32_t mode; /* dwFileAttributes */
uint32_t ctime[2]; /* ftCreationTime */
uint32_t atime[2]; /* ftLastAccessTime */
uint32_t mtime[2]; /* ftLastWriteTime */
uint32_t size_hi; /* nFileSizeHigh */
uint32_t size; /* nFileSizeLow */
uint32_t reserved0; /* dwReserved0 */
uint32_t reserved1; /* dwReserved1 */
unsigned char filename[GG_MAX_PATH - 14]; /* cFileName */
unsigned char short_filename[14]; /* cAlternateFileName */
} GG_PACKED;
/*
* struct gg_dcc
*
* struktura opisuj±ca nas³uchuj±ce gniazdo po³±czeñ miêdzy klientami.
* tworzona przez gg_dcc_socket_create(), zwalniana przez gg_dcc_free().
*/
struct gg_dcc {
gg_common_head(struct gg_dcc)
struct gg_event *event; /* opis zdarzenia */
int active; /* czy to my siê ³±czymy? */
int port; /* port, na którym siedzi */
uin_t uin; /* uin klienta */
uin_t peer_uin; /* uin drugiej strony */
int file_fd; /* deskryptor pliku */
unsigned int offset; /* offset w pliku */
unsigned int chunk_size;/* rozmiar kawa³ka */
unsigned int chunk_offset;/* offset w aktualnym kawa³ku */
struct gg_file_info file_info;
/* informacje o pliku */
int established; /* po³±czenie ustanowione */
char *voice_buf; /* bufor na pakiet po³±czenia g³osowego */
int incoming; /* po³±czenie przychodz±ce */
char *chunk_buf; /* bufor na kawa³ek danych */
uint32_t remote_addr; /* adres drugiej strony */
uint16_t remote_port; /* port drugiej strony */
};
/*
* enum gg_session_t
*
* rodzaje sesji.
*/
enum gg_session_t {
GG_SESSION_GG = 1, /* po³±czenie z serwerem gg */
GG_SESSION_HTTP, /* ogólna sesja http */
GG_SESSION_SEARCH, /* szukanie */
GG_SESSION_REGISTER, /* rejestrowanie */
GG_SESSION_REMIND, /* przypominanie has³a */
GG_SESSION_PASSWD, /* zmiana has³a */
GG_SESSION_CHANGE, /* zmiana informacji o sobie */
GG_SESSION_DCC, /* ogólne po³±czenie DCC */
GG_SESSION_DCC_SOCKET, /* nas³uchuj±cy socket */
GG_SESSION_DCC_SEND, /* wysy³anie pliku */
GG_SESSION_DCC_GET, /* odbieranie pliku */
GG_SESSION_DCC_VOICE, /* rozmowa g³osowa */
GG_SESSION_USERLIST_GET, /* pobieranie userlisty */
GG_SESSION_USERLIST_PUT, /* wysy³anie userlisty */
GG_SESSION_UNREGISTER, /* usuwanie konta */
GG_SESSION_USERLIST_REMOVE, /* usuwanie userlisty */
GG_SESSION_TOKEN, /* pobieranie tokenu */
GG_SESSION_USER0 = 256, /* zdefiniowana dla u¿ytkownika */
GG_SESSION_USER1, /* j.w. */
GG_SESSION_USER2, /* j.w. */
GG_SESSION_USER3, /* j.w. */
GG_SESSION_USER4, /* j.w. */
GG_SESSION_USER5, /* j.w. */
GG_SESSION_USER6, /* j.w. */
GG_SESSION_USER7 /* j.w. */
};
/*
* enum gg_state_t
*
* opisuje stan asynchronicznej maszyny.
*/
enum gg_state_t {
/* wspólne */
GG_STATE_IDLE = 0, /* nie powinno wyst±piæ. */
GG_STATE_RESOLVING, /* wywo³a³ gethostbyname() */
GG_STATE_CONNECTING, /* wywo³a³ connect() */
GG_STATE_READING_DATA, /* czeka na dane http */
GG_STATE_ERROR, /* wyst±pi³ b³±d. kod w x->error */
/* gg_session */
GG_STATE_CONNECTING_HUB, /* wywo³a³ connect() na huba */
GG_STATE_CONNECTING_GG, /* wywo³a³ connect() na serwer */
GG_STATE_READING_KEY, /* czeka na klucz */
GG_STATE_READING_REPLY, /* czeka na odpowied¼ */
GG_STATE_CONNECTED, /* po³±czy³ siê */
/* gg_http */
GG_STATE_SENDING_QUERY, /* wysy³a zapytanie http */
GG_STATE_READING_HEADER, /* czeka na nag³ówek http */
GG_STATE_PARSING, /* przetwarza dane */
GG_STATE_DONE, /* skoñczy³ */
/* gg_dcc */
GG_STATE_LISTENING, /* czeka na po³±czenia */
GG_STATE_READING_UIN_1, /* czeka na uin peera */
GG_STATE_READING_UIN_2, /* czeka na swój uin */
GG_STATE_SENDING_ACK, /* wysy³a potwierdzenie dcc */
GG_STATE_READING_ACK, /* czeka na potwierdzenie dcc */
GG_STATE_READING_REQUEST, /* czeka na komendê */
GG_STATE_SENDING_REQUEST, /* wysy³a komendê */
GG_STATE_SENDING_FILE_INFO, /* wysy³a informacje o pliku */
GG_STATE_READING_PRE_FILE_INFO, /* czeka na pakiet przed file_info */
GG_STATE_READING_FILE_INFO, /* czeka na informacje o pliku */
GG_STATE_SENDING_FILE_ACK, /* wysy³a potwierdzenie pliku */
GG_STATE_READING_FILE_ACK, /* czeka na potwierdzenie pliku */
GG_STATE_SENDING_FILE_HEADER, /* wysy³a nag³ówek pliku */
GG_STATE_READING_FILE_HEADER, /* czeka na nag³ówek */
GG_STATE_GETTING_FILE, /* odbiera plik */
GG_STATE_SENDING_FILE, /* wysy³a plik */
GG_STATE_READING_VOICE_ACK, /* czeka na potwierdzenie voip */
GG_STATE_READING_VOICE_HEADER, /* czeka na rodzaj bloku voip */
GG_STATE_READING_VOICE_SIZE, /* czeka na rozmiar bloku voip */
GG_STATE_READING_VOICE_DATA, /* czeka na dane voip */
GG_STATE_SENDING_VOICE_ACK, /* wysy³a potwierdzenie voip */
GG_STATE_SENDING_VOICE_REQUEST, /* wysy³a ¿±danie voip */
GG_STATE_READING_TYPE, /* czeka na typ po³±czenia */
/* nowe. bez sensu jest to API. */
GG_STATE_TLS_NEGOTIATION /* negocjuje po³±czenie TLS */
};
/*
* enum gg_check_t
*
* informuje, co proces klienta powinien sprawdziæ na deskryptorze danego
* po³±czenia.
*/
enum gg_check_t {
GG_CHECK_NONE = 0, /* nic. nie powinno wyst±piæ */
GG_CHECK_WRITE = 1, /* sprawdzamy mo¿liwo¶æ zapisu */
GG_CHECK_READ = 2 /* sprawdzamy mo¿liwo¶æ odczytu */
};
/*
* struct gg_login_params
*
* parametry gg_login(). przeniesiono do struktury, ¿eby unikn±æ problemów
* z ci±g³ymi zmianami API, gdy dodano co¶ nowego do protoko³u.
*/
struct gg_login_params {
uin_t uin; /* numerek */
char *password; /* has³o */
int async; /* asynchroniczne sockety? */
int status; /* pocz±tkowy status klienta */
char *status_descr; /* opis statusu */
uint32_t server_addr; /* adres serwera gg */
uint16_t server_port; /* port serwera gg */
uint32_t client_addr; /* adres dcc klienta */
uint16_t client_port; /* port dcc klienta */
int protocol_version; /* wersja protoko³u */
char *client_version; /* wersja klienta */
int has_audio; /* czy ma d¼wiêk? */
int last_sysmsg; /* ostatnia wiadomo¶æ systemowa */
uint32_t external_addr; /* adres widziany na zewnatrz */
uint16_t external_port; /* port widziany na zewnatrz */
int tls; /* czy ³±czymy po TLS? */
int image_size; /* maksymalny rozmiar obrazka w KiB */
int era_omnix; /* czy udawaæ klienta era omnix? */
char dummy[5 * sizeof(int)]; /* miejsce na kolejnych 6 zmiennych,
* ¿eby z dodaniem parametru nie
* zmienia³ siê rozmiar struktury */
int failure; /*RL: w razie b³êdu podczas ³¹czenia w synchronicznych kopiuje wartoæ z event.failure*/
};
LIBGADU_DLL
struct gg_session *gg_login(/*RL: const*/ struct gg_login_params *p);
LIBGADU_DLL
void gg_free_session(struct gg_session *sess);
LIBGADU_DLL
void gg_logoff(struct gg_session *sess);
LIBGADU_DLL
int gg_change_status(struct gg_session *sess, int status);
LIBGADU_DLL
int gg_change_status_descr(struct gg_session *sess, int status, const char *descr);
LIBGADU_DLL
int gg_change_status_descr_time(struct gg_session *sess, int status, const char *descr, int time);
LIBGADU_DLL
int gg_send_message(struct gg_session *sess, int msgclass, uin_t recipient, const unsigned char *message);
LIBGADU_DLL
int gg_send_message_richtext(struct gg_session *sess, int msgclass, uin_t recipient, const unsigned char *message, const unsigned char *format, int formatlen);
LIBGADU_DLL
int gg_send_message_confer(struct gg_session *sess, int msgclass, int recipients_count, uin_t *recipients, const unsigned char *message);
LIBGADU_DLL
int gg_send_message_confer_richtext(struct gg_session *sess, int msgclass, int recipients_count, uin_t *recipients, const unsigned char *message, const unsigned char *format, int formatlen);
LIBGADU_DLL
int gg_send_message_ctcp(struct gg_session *sess, int msgclass, uin_t recipient, const unsigned char *message, int message_len);
LIBGADU_DLL
int gg_ping(struct gg_session *sess);
LIBGADU_DLL
int gg_userlist_request(struct gg_session *sess, char type, const char *request);
LIBGADU_DLL
int gg_image_request(struct gg_session *sess, uin_t recipient, int size, uint32_t crc32);
LIBGADU_DLL
int gg_image_reply(struct gg_session *sess, uin_t recipient, const char *filename, const char *image, int size);
uint32_t gg_crc32(uint32_t crc, const unsigned char *buf, int len);
struct gg_image_queue {
uin_t sender; /* nadawca obrazka */
uint32_t size; /* rozmiar */
uint32_t crc32; /* suma kontrolna */
char *filename; /* nazwa pliku */
char *image; /* bufor z obrazem */
uint32_t done; /* ile ju¿ wczytano */
struct gg_image_queue *next; /* nastêpny na li¶cie */
};
/*
* enum gg_event_t
*
* rodzaje zdarzeñ.
*/
enum gg_event_t {
GG_EVENT_NONE = 0, /* nic siê nie wydarzy³o */
GG_EVENT_MSG, /* otrzymano wiadomo¶æ */
GG_EVENT_NOTIFY, /* kto¶ siê pojawi³ */
GG_EVENT_NOTIFY_DESCR, /* kto¶ siê pojawi³ z opisem */
GG_EVENT_STATUS, /* kto¶ zmieni³ stan */
GG_EVENT_ACK, /* potwierdzenie wys³ania wiadomo¶ci */
GG_EVENT_PONG, /* pakiet pong */
GG_EVENT_CONN_FAILED, /* po³±czenie siê nie uda³o */
GG_EVENT_CONN_SUCCESS, /* po³±czenie siê powiod³o */
GG_EVENT_DISCONNECT, /* serwer zrywa po³±czenie */
GG_EVENT_DCC_NEW, /* nowe po³±czenie miêdzy klientami */
GG_EVENT_DCC_ERROR, /* b³±d po³±czenia miêdzy klientami */
GG_EVENT_DCC_DONE, /* zakoñczono po³±czenie */
GG_EVENT_DCC_CLIENT_ACCEPT, /* moment akceptacji klienta */
GG_EVENT_DCC_CALLBACK, /* klient siê po³±czy³ na ¿±danie */
GG_EVENT_DCC_NEED_FILE_INFO, /* nale¿y wype³niæ file_info */
GG_EVENT_DCC_NEED_FILE_ACK, /* czeka na potwierdzenie pliku */
GG_EVENT_DCC_NEED_VOICE_ACK, /* czeka na potwierdzenie rozmowy */
GG_EVENT_DCC_VOICE_DATA, /* ramka danych rozmowy g³osowej */
GG_EVENT_PUBDIR50_SEARCH_REPLY, /* odpowiedz wyszukiwania */
GG_EVENT_PUBDIR50_READ, /* odczytano w³asne dane z katalogu */
GG_EVENT_PUBDIR50_WRITE, /* wpisano w³asne dane do katalogu */
GG_EVENT_STATUS60, /* kto¶ zmieni³ stan w GG 6.0 */
GG_EVENT_NOTIFY60, /* kto¶ siê pojawi³ w GG 6.0 */
GG_EVENT_USERLIST, /* odpowied¼ listy kontaktów w GG 6.0 */
GG_EVENT_IMAGE_REQUEST, /* pro¶ba o wys³anie obrazka GG 6.0 */
GG_EVENT_IMAGE_REPLY, /* podes³any obrazek GG 6.0 */
GG_EVENT_DCC_ACK /* potwierdzenie transmisji */
};
#define GG_EVENT_SEARCH50_REPLY GG_EVENT_PUBDIR50_SEARCH_REPLY
/*
* enum gg_failure_t
*
* okre¶la powód nieudanego po³±czenia.
*/
enum gg_failure_t {
GG_FAILURE_RESOLVING = 1, /* nie znaleziono serwera */
GG_FAILURE_CONNECTING, /* nie mo¿na siê po³±czyæ */
GG_FAILURE_INVALID, /* serwer zwróci³ nieprawid³owe dane */
GG_FAILURE_READING, /* zerwano po³±czenie podczas odczytu */
GG_FAILURE_WRITING, /* zerwano po³±czenie podczas zapisu */
GG_FAILURE_PASSWORD, /* nieprawid³owe has³o */
GG_FAILURE_404, /* XXX nieu¿ywane */
GG_FAILURE_TLS, /* b³±d negocjacji TLS */
GG_FAILURE_NEED_EMAIL /* serwer roz³±czy³ nas z pro¶b± o zmianê emaila */
};
/*
* enum gg_error_t
*
* okre¶la rodzaj b³êdu wywo³anego przez dan± operacjê. nie zawiera
* przesadnie szczegó³owych informacji o powodzie b³êdu, by nie komplikowaæ
* obs³ugi b³êdów. je¶li wymagana jest wiêksza dok³adno¶æ, nale¿y sprawdziæ
* zawarto¶æ zmiennej errno.
*/
enum gg_error_t {
GG_ERROR_RESOLVING = 1, /* b³±d znajdowania hosta */
GG_ERROR_CONNECTING, /* b³±d ³aczenia siê */
GG_ERROR_READING, /* b³±d odczytu */
GG_ERROR_WRITING, /* b³±d wysy³ania */
GG_ERROR_DCC_HANDSHAKE, /* b³±d negocjacji */
GG_ERROR_DCC_FILE, /* b³±d odczytu/zapisu pliku */
GG_ERROR_DCC_EOF, /* plik siê skoñczy³? */
GG_ERROR_DCC_NET, /* b³±d wysy³ania/odbierania */
GG_ERROR_DCC_REFUSED /* po³±czenie odrzucone przez usera */
};
/*
* struktury dotycz±ce wyszukiwania w GG 5.0. NIE NALE¯Y SIÊ DO NICH
* ODWO£YWAÆ BEZPO¦REDNIO! do dostêpu do nich s³u¿± funkcje gg_pubdir50_*()
*/
struct gg_pubdir50_entry {
int num;
char *field;
char *value;
};
struct gg_pubdir50_s {
int count;
uin_t next;
int type;
uint32_t seq;
struct gg_pubdir50_entry *entries;
int entries_count;
};
/*
* typedef gg_pubdir_50_t
*
* typ opisuj±cy zapytanie lub wynik zapytania katalogu publicznego
* z protoko³u GG 5.0. nie nale¿y siê odwo³ywaæ bezpo¶rednio do jego
* pól -- s³u¿± do tego funkcje gg_pubdir50_*()
*/
typedef struct gg_pubdir50_s *gg_pubdir50_t;
/*
* struct gg_event
*
* struktura opisuj±ca rodzaj zdarzenia. wychodzi z gg_watch_fd() lub
* z gg_dcc_watch_fd()
*/
struct gg_event {
int type; /* rodzaj zdarzenia -- gg_event_t */
union { /* @event */
struct gg_notify_reply *notify; /* informacje o li¶cie kontaktów -- GG_EVENT_NOTIFY */
enum gg_failure_t failure; /* b³±d po³±czenia -- GG_EVENT_FAILURE */
struct gg_dcc *dcc_new; /* nowe po³±czenie bezpo¶rednie -- GG_EVENT_DCC_NEW */
int dcc_error; /* b³±d po³±czenia bezpo¶redniego -- GG_EVENT_DCC_ERROR */
gg_pubdir50_t pubdir50; /* wynik operacji zwi±zanej z katalogiem publicznym -- GG_EVENT_PUBDIR50_* */
struct { /* @msg odebrano wiadomo¶æ -- GG_EVENT_MSG */
uin_t sender; /* numer nadawcy */
int msgclass; /* klasa wiadomo¶ci */
time_t time; /* czas nadania */
unsigned char *message; /* tre¶æ wiadomo¶ci */
int recipients_count; /* ilo¶æ odbiorców konferencji */
uin_t *recipients; /* odbiorcy konferencji */
int formats_length; /* d³ugo¶æ informacji o formatowaniu tekstu */
void *formats; /* informacje o formatowaniu tekstu */
} msg;
struct { /* @notify_descr informacje o li¶cie kontaktów z opisami stanu -- GG_EVENT_NOTIFY_DESCR */
struct gg_notify_reply *notify; /* informacje o li¶cie kontaktów */
char *descr; /* opis stanu */
} notify_descr;
struct { /* @status zmiana stanu -- GG_EVENT_STATUS */
uin_t uin; /* numer */
uint32_t status; /* nowy stan */
char *descr; /* opis stanu */
} status;
struct { /* @status60 zmiana stanu -- GG_EVENT_STATUS60 */
uin_t uin; /* numer */
int status; /* nowy stan */
uint32_t remote_ip; /* adres ip */
uint16_t remote_port; /* port */
int version; /* wersja klienta */
int image_size; /* maksymalny rozmiar grafiki w KiB */
char *descr; /* opis stanu */
time_t time; /* czas powrotu */
} status60;
struct { /* @notify60 informacja o li¶cie kontaktów -- GG_EVENT_NOTIFY60 */
uin_t uin; /* numer */
int status; /* stan */
uint32_t remote_ip; /* adres ip */
uint16_t remote_port; /* port */
int version; /* wersja klienta */
int image_size; /* maksymalny rozmiar grafiki w KiB */
char *descr; /* opis stanu */
time_t time; /* czas powrotu */
} *notify60;
struct { /* @ack potwierdzenie wiadomo¶ci -- GG_EVENT_ACK */
uin_t recipient; /* numer odbiorcy */
int status; /* stan dorêczenia wiadomo¶ci */
int seq; /* numer sekwencyjny wiadomo¶ci */
} ack;
struct { /* @dcc_voice_data otrzymano dane d¼wiêkowe -- GG_EVENT_DCC_VOICE_DATA */
uint8_t *data; /* dane d¼wiêkowe */
int length; /* ilo¶æ danych d¼wiêkowych */
} dcc_voice_data;
struct { /* @userlist odpowied¼ listy kontaktów serwera */
char type; /* rodzaj odpowiedzi */
char *reply; /* tre¶æ odpowiedzi */
} userlist;
struct { /* @image_request pro¶ba o obrazek */
uin_t sender; /* nadawca pro¶by */
uint32_t size; /* rozmiar obrazka */
uint32_t crc32; /* suma kontrolna */
} image_request;
struct { /* @image_reply odpowied¼ z obrazkiem */
uin_t sender; /* nadawca odpowiedzi */
uint32_t size; /* rozmiar obrazka */
uint32_t crc32; /* suma kontrolna */
char *filename; /* nazwa pliku */
char *image; /* bufor z obrazkiem */
} image_reply;
} event;
};
LIBGADU_DLL
struct gg_event *gg_watch_fd(struct gg_session *sess);
LIBGADU_DLL
void gg_event_free(struct gg_event *e);
#define gg_free_event gg_event_free
/*
* funkcje obs³ugi listy kontaktów.
*/
LIBGADU_DLL
int gg_notify_ex(struct gg_session *sess, uin_t *userlist, char *types, int count);
LIBGADU_DLL
int gg_notify(struct gg_session *sess, uin_t *userlist, int count);
LIBGADU_DLL
int gg_add_notify_ex(struct gg_session *sess, uin_t uin, char type);
LIBGADU_DLL
int gg_add_notify(struct gg_session *sess, uin_t uin);
LIBGADU_DLL
int gg_remove_notify_ex(struct gg_session *sess, uin_t uin, char type);
LIBGADU_DLL
int gg_remove_notify(struct gg_session *sess, uin_t uin);
/*
* funkcje obs³ugi http.
*/
LIBGADU_DLL
struct gg_http *gg_http_connect(const char *hostname, int port, int async, const char *method, const char *path, const char *header);
LIBGADU_DLL
int gg_http_watch_fd(struct gg_http *h);
LIBGADU_DLL
void gg_http_stop(struct gg_http *h);
LIBGADU_DLL
void gg_http_free(struct gg_http *h);
LIBGADU_DLL
void gg_http_free_fields(struct gg_http *h);
#define gg_free_http gg_http_free
/*
* struktury opisuj±ca kryteria wyszukiwania dla gg_search(). nieaktualne,
* zast±pione przez gg_pubdir50_t. pozostawiono je dla zachowania ABI.
*/
struct gg_search_request {
int active;
unsigned int start;
char *nickname;
char *first_name;
char *last_name;
char *city;
int gender;
int min_birth;
int max_birth;
char *email;
char *phone;
uin_t uin;
};
struct gg_search {
int count;
struct gg_search_result *results;
};
struct gg_search_result {
uin_t uin;
char *first_name;
char *last_name;
char *nickname;
int born;
int gender;
char *city;
int active;
};
#define GG_GENDER_NONE 0
#define GG_GENDER_FEMALE 1
#define GG_GENDER_MALE 2
/*
* funkcje wyszukiwania.
*/
LIBGADU_DLL
struct gg_http *gg_search(const struct gg_search_request *r, int async);
LIBGADU_DLL
int gg_search_watch_fd(struct gg_http *f);
LIBGADU_DLL
void gg_free_search(struct gg_http *f);
#define gg_search_free gg_free_search
LIBGADU_DLL
const struct gg_search_request *gg_search_request_mode_0(char *nickname, char *first_name, char *last_name, char *city, int gender, int min_birth, int max_birth, int active, int start);
LIBGADU_DLL
const struct gg_search_request *gg_search_request_mode_1(char *email, int active, int start);
LIBGADU_DLL
const struct gg_search_request *gg_search_request_mode_2(char *phone, int active, int start);
LIBGADU_DLL
const struct gg_search_request *gg_search_request_mode_3(uin_t uin, int active, int start);
LIBGADU_DLL
void gg_search_request_free(struct gg_search_request *r);
/*
* funkcje obs³ugi katalogu publicznego zgodne z GG 5.0. tym razem funkcje
* zachowuj± pewien poziom abstrakcji, ¿eby unikn±æ zmian ABI przy zmianach
* w protokole.
*
* NIE NALE¯Y SIÊ ODWO£YWAÆ DO PÓL gg_pubdir50_t BEZPO¦REDNIO!
*/
LIBGADU_DLL
uint32_t gg_pubdir50(struct gg_session *sess, gg_pubdir50_t req);
LIBGADU_DLL
gg_pubdir50_t gg_pubdir50_new(int type);
LIBGADU_DLL
int gg_pubdir50_add(gg_pubdir50_t req, const char *field, const char *value);
LIBGADU_DLL
int gg_pubdir50_seq_set(gg_pubdir50_t req, uint32_t seq);
LIBGADU_DLL
const char *gg_pubdir50_get(gg_pubdir50_t res, int num, const char *field);
LIBGADU_DLL
int gg_pubdir50_type(gg_pubdir50_t res);
LIBGADU_DLL
int gg_pubdir50_count(gg_pubdir50_t res);
LIBGADU_DLL
uin_t gg_pubdir50_next(gg_pubdir50_t res);
LIBGADU_DLL
uint32_t gg_pubdir50_seq(gg_pubdir50_t res);
LIBGADU_DLL
void gg_pubdir50_free(gg_pubdir50_t res);
#define GG_PUBDIR50_UIN "FmNumber"
#define GG_PUBDIR50_STATUS "FmStatus"
#define GG_PUBDIR50_FIRSTNAME "firstname"
#define GG_PUBDIR50_LASTNAME "lastname"
#define GG_PUBDIR50_NICKNAME "nickname"
#define GG_PUBDIR50_BIRTHYEAR "birthyear"
#define GG_PUBDIR50_CITY "city"
#define GG_PUBDIR50_GENDER "gender"
#define GG_PUBDIR50_GENDER_FEMALE "1"
#define GG_PUBDIR50_GENDER_MALE "2"
#define GG_PUBDIR50_GENDER_SET_FEMALE "2"
#define GG_PUBDIR50_GENDER_SET_MALE "1"
#define GG_PUBDIR50_ACTIVE "ActiveOnly"
#define GG_PUBDIR50_ACTIVE_TRUE "1"
#define GG_PUBDIR50_START "fmstart"
#define GG_PUBDIR50_FAMILYNAME "familyname"
#define GG_PUBDIR50_FAMILYCITY "familycity"
LIBGADU_DLL
int gg_pubdir50_handle_reply(struct gg_event *e, const char *packet, int length);
/*
* struct gg_pubdir
*
* operacje na katalogu publicznym.
*/
struct gg_pubdir {
int success; /* czy siê uda³o */
uin_t uin; /* otrzymany numerek. 0 je¶li b³±d */
};
/* ogólne funkcje, nie powinny byæ u¿ywane */
LIBGADU_DLL
int gg_pubdir_watch_fd(struct gg_http *f);
LIBGADU_DLL
void gg_pubdir_free(struct gg_http *f);
#define gg_free_pubdir gg_pubdir_free
struct gg_token {
int width; /* szeroko¶æ obrazka */
int height; /* wysoko¶æ obrazka */
int length; /* ilo¶æ znaków w tokenie */
char *tokenid; /* id tokenu */
};
/* funkcje dotycz±ce tokenów */
LIBGADU_DLL
struct gg_http *gg_token(int async);
LIBGADU_DLL
int gg_token_watch_fd(struct gg_http *h);
LIBGADU_DLL
void gg_token_free(struct gg_http *h);
/* rejestracja nowego numerka */
LIBGADU_DLL
struct gg_http *gg_register(const char *email, const char *password, int async);
LIBGADU_DLL
struct gg_http *gg_register2(const char *email, const char *password, const char *qa, int async);
LIBGADU_DLL
struct gg_http *gg_register3(const char *email, const char *password, const char *tokenid, const char *tokenval, int async);
#define gg_register_watch_fd gg_pubdir_watch_fd
#define gg_register_free gg_pubdir_free
#define gg_free_register gg_pubdir_free
struct gg_http *gg_unregister(uin_t uin, const char *password, const char *email, int async);
struct gg_http *gg_unregister2(uin_t uin, const char *password, const char *qa, int async);
LIBGADU_DLL
struct gg_http *gg_unregister3(uin_t uin, const char *password, const char *tokenid, const char *tokenval, int async);
#define gg_unregister_watch_fd gg_pubdir_watch_fd
#define gg_unregister_free gg_pubdir_free
/* przypomnienie has³a e-mailem */
LIBGADU_DLL
struct gg_http *gg_remind_passwd(uin_t uin, int async);
LIBGADU_DLL
struct gg_http *gg_remind_passwd2(uin_t uin, const char *tokenid, const char *tokenval, int async);
LIBGADU_DLL
struct gg_http *gg_remind_passwd3(uin_t uin, const char *email, const char *tokenid, const char *tokenval, int async);
#define gg_remind_passwd_watch_fd gg_pubdir_watch_fd
#define gg_remind_passwd_free gg_pubdir_free
#define gg_free_remind_passwd gg_pubdir_free
/* zmiana has³a */
LIBGADU_DLL
struct gg_http *gg_change_passwd(uin_t uin, const char *passwd, const char *newpasswd, const char *newemail, int async);
LIBGADU_DLL
struct gg_http *gg_change_passwd2(uin_t uin, const char *passwd, const char *newpasswd, const char *email, const char *newemail, int async);
LIBGADU_DLL
struct gg_http *gg_change_passwd3(uin_t uin, const char *passwd, const char *newpasswd, const char *qa, int async);
LIBGADU_DLL
struct gg_http *gg_change_passwd4(uin_t uin, const char *email, const char *passwd, const char *newpasswd, const char *tokenid, const char *tokenval, int async);
#define gg_change_passwd_free gg_pubdir_free
#define gg_free_change_passwd gg_pubdir_free
/*
* struct gg_change_info_request
*
* opis ¿±dania zmiany informacji w katalogu publicznym.
*/
struct gg_change_info_request {
char *first_name; /* imiê */
char *last_name; /* nazwisko */
char *nickname; /* pseudonim */
char *email; /* email */
int born; /* rok urodzenia */
int gender; /* p³eæ */
char *city; /* miasto */
};
LIBGADU_DLL
struct gg_change_info_request *gg_change_info_request_new(const char *first_name, const char *last_name, const char *nickname, const char *email, int born, int gender, const char *city);
LIBGADU_DLL
void gg_change_info_request_free(struct gg_change_info_request *r);
LIBGADU_DLL
struct gg_http *gg_change_info(uin_t uin, const char *passwd, const struct gg_change_info_request *request, int async);
#define gg_change_pubdir_watch_fd gg_pubdir_watch_fd
#define gg_change_pubdir_free gg_pubdir_free
#define gg_free_change_pubdir gg_pubdir_free
/*
* funkcje dotycz±ce listy kontaktów na serwerze.
*/
LIBGADU_DLL
struct gg_http *gg_userlist_get(uin_t uin, const char *password, int async);
LIBGADU_DLL
int gg_userlist_get_watch_fd(struct gg_http *f);
LIBGADU_DLL
void gg_userlist_get_free(struct gg_http *f);
LIBGADU_DLL
struct gg_http *gg_userlist_put(uin_t uin, const char *password, const char *contacts, int async);
LIBGADU_DLL
int gg_userlist_put_watch_fd(struct gg_http *f);
LIBGADU_DLL
void gg_userlist_put_free(struct gg_http *f);
LIBGADU_DLL
struct gg_http *gg_userlist_remove(uin_t uin, const char *password, int async);
LIBGADU_DLL
int gg_userlist_remove_watch_fd(struct gg_http *f);
LIBGADU_DLL
void gg_userlist_remove_free(struct gg_http *f);
/*
* funkcje dotycz±ce komunikacji miêdzy klientami.
*/
LIBGADU_DLL
extern int gg_dcc_port; /* port, na którym nas³uchuje klient */
LIBGADU_DLL
extern unsigned long gg_dcc_ip; /* adres, na którym nas³uchuje klient */
LIBGADU_DLL
int gg_dcc_request(struct gg_session *sess, uin_t uin);
LIBGADU_DLL
struct gg_dcc *gg_dcc_send_file(uint32_t ip, uint16_t port, uin_t my_uin, uin_t peer_uin);
LIBGADU_DLL
struct gg_dcc *gg_dcc_get_file(uint32_t ip, uint16_t port, uin_t my_uin, uin_t peer_uin);
LIBGADU_DLL
struct gg_dcc *gg_dcc_voice_chat(uint32_t ip, uint16_t port, uin_t my_uin, uin_t peer_uin);
LIBGADU_DLL
void gg_dcc_set_type(struct gg_dcc *d, int type);
LIBGADU_DLL
int gg_dcc_fill_file_info(struct gg_dcc *d, const char *filename);
LIBGADU_DLL
int gg_dcc_fill_file_info2(struct gg_dcc *d, const char *filename, const char *local_filename);
LIBGADU_DLL
int gg_dcc_voice_send(struct gg_dcc *d, char *buf, int length);
#define GG_DCC_VOICE_FRAME_LENGTH 195
#define GG_DCC_VOICE_FRAME_LENGTH_505 326
LIBGADU_DLL
struct gg_dcc *gg_dcc_socket_create(uin_t uin, uint16_t port);
#define gg_dcc_socket_free gg_free_dcc
#define gg_dcc_socket_watch_fd gg_dcc_watch_fd
LIBGADU_DLL
struct gg_event *gg_dcc_watch_fd(struct gg_dcc *d);
LIBGADU_DLL
void gg_dcc_free(struct gg_dcc *c);
#define gg_free_dcc gg_dcc_free
/*
* je¶li chcemy sobie podebugowaæ, wystarczy ustawiæ `gg_debug_level'.
* niestety w miarê przybywania wpisów `gg_debug(...)' nie chcia³o mi
* siê ustawiaæ odpowiednich leveli, wiêc wiêkszo¶æ sz³a do _MISC.
*/
LIBGADU_DLL
extern int gg_debug_level; /* poziom debugowania. mapa bitowa sta³ych GG_DEBUG_* */
#define GG_DEBUG_NET 1
#define GG_DEBUG_TRAFFIC 2
#define GG_DEBUG_DUMP 4
#define GG_DEBUG_FUNCTION 8
#define GG_DEBUG_MISC 16
/* RL : Definiuje typ funkcji debuguj¹cej */
typedef void (*gg_debug_ftype)(int level, const char *format, ...);
LIBGADU_DLL gg_debug_ftype gg_debug;
LIBGADU_DLL
const char *gg_libgadu_version(void);
/*
* konfiguracja http proxy.
*/
LIBGADU_DLL
extern int gg_proxy_enabled; /* w³±cza obs³ugê proxy */
LIBGADU_DLL
extern char *gg_proxy_host; /* okre¶la adres serwera proxy */
LIBGADU_DLL
extern int gg_proxy_port; /* okre¶la port serwera proxy */
LIBGADU_DLL
extern char *gg_proxy_username; /* okre¶la nazwê u¿ytkownika przy autoryzacji serwera proxy */
LIBGADU_DLL
extern char *gg_proxy_password; /* okre¶la has³o u¿ytkownika przy autoryzacji serwera proxy */
LIBGADU_DLL
extern int gg_proxy_http_only; /* w³±cza obs³ugê proxy wy³±cznie dla us³ug HTTP */
/*
* adres, z którego ¶lemy pakiety (np ³±czymy siê z serwerem)
* u¿ywany przy gg_connect()
*/
extern unsigned long gg_local_ip;
/*
* -------------------------------------------------------------------------
* poni¿ej znajduj± siê wewnêtrzne sprawy biblioteki. zwyk³y klient nie
* powinien ich w ogóle ruszaæ, bo i nie ma po co. wszystko mo¿na za³atwiæ
* procedurami wy¿szego poziomu, których definicje znajduj± siê na pocz±tku
* tego pliku.
* -------------------------------------------------------------------------
*/
#ifdef __GG_LIBGADU_HAVE_PTHREAD
LIBGADU_DLL
int gg_resolve_pthread(int *fd, void **resolver, const char *hostname);
#endif
#ifdef _WIN32
typedef struct gg_thread {
int id;
int socket;
void* event;
struct gg_thread * next;
} gg_thread;
LIBGADU_DLL gg_thread* gg_thread_find(int thread_id, int socket, gg_thread *** p_wsk);
LIBGADU_DLL void gg_thread_socket_lock();
LIBGADU_DLL void gg_thread_socket_unlock();
LIBGADU_DLL
int gg_thread_socket(int thread_id, int socket);
#endif