-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathldk_ffi.h
4922 lines (4053 loc) · 193 KB
/
ldk_ffi.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
/* Text to put at the beginning of the generated file. Probably a license. */
/* Generated with cbindgen:0.14.2 */
/* Warning, this file is autogenerated by cbindgen. Don't modify this manually. */
#include <stdarg.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdlib.h>
/**
* " Used to give chain error details upstream"
*/
typedef enum LDKChainError {
/**
* " Client doesn't support UTXO lookup (but the chain hash matches our genesis block hash)"
*/
LDKChainError_NotSupported,
/**
* " Chain isn't the one watched"
*/
LDKChainError_NotWatched,
/**
* " Tx doesn't exist or is unconfirmed"
*/
LDKChainError_UnknownTx,
/**
* Must be last for serialization purposes
*/
LDKChainError_Sentinel,
} LDKChainError;
/**
* " An error enum representing a failure to persist a channel monitor update."
*/
typedef enum LDKChannelMonitorUpdateErr {
/**
* " Used to indicate a temporary failure (eg connection to a watchtower or remote backup of"
* " our state failed, but is expected to succeed at some point in the future)."
* ""
* " Such a failure will \"freeze\" a channel, preventing us from revoking old states or"
* " submitting new commitment transactions to the remote party. Once the update(s) which failed"
* " have been successfully applied, ChannelManager::channel_monitor_updated can be used to"
* " restore the channel to an operational state."
* ""
* " Note that a given ChannelManager will *never* re-generate a given ChannelMonitorUpdate. If"
* " you return a TemporaryFailure you must ensure that it is written to disk safely before"
* " writing out the latest ChannelManager state."
* ""
* " Even when a channel has been \"frozen\" updates to the ChannelMonitor can continue to occur"
* " (eg if an inbound HTLC which we forwarded was claimed upstream resulting in us attempting"
* " to claim it on this channel) and those updates must be applied wherever they can be. At"
* " least one such updated ChannelMonitor must be persisted otherwise PermanentFailure should"
* " be returned to get things on-chain ASAP using only the in-memory copy. Obviously updates to"
* " the channel which would invalidate previous ChannelMonitors are not made when a channel has"
* " been \"frozen\"."
* ""
* " Note that even if updates made after TemporaryFailure succeed you must still call"
* " channel_monitor_updated to ensure you have the latest monitor and re-enable normal channel"
* " operation."
* ""
* " Note that the update being processed here will not be replayed for you when you call"
* " ChannelManager::channel_monitor_updated, so you must store the update itself along"
* " with the persisted ChannelMonitor on your own local disk prior to returning a"
* " TemporaryFailure. You may, of course, employ a journaling approach, storing only the"
* " ChannelMonitorUpdate on disk without updating the monitor itself, replaying the journal at"
* " reload-time."
* ""
* " For deployments where a copy of ChannelMonitors and other local state are backed up in a"
* " remote location (with local copies persisted immediately), it is anticipated that all"
* " updates will return TemporaryFailure until the remote copies could be updated."
*/
LDKChannelMonitorUpdateErr_TemporaryFailure,
/**
* " Used to indicate no further channel monitor updates will be allowed (eg we've moved on to a"
* " different watchtower and cannot update with all watchtowers that were previously informed"
* " of this channel). This will force-close the channel in question (which will generate one"
* " final ChannelMonitorUpdate which must be delivered to at least one ChannelMonitor copy)."
* ""
* " Should also be used to indicate a failure to update the local persisted copy of the channel"
* " monitor."
*/
LDKChannelMonitorUpdateErr_PermanentFailure,
/**
* Must be last for serialization purposes
*/
LDKChannelMonitorUpdateErr_Sentinel,
} LDKChannelMonitorUpdateErr;
/**
* " An enum that represents the speed at which we want a transaction to confirm used for feerate"
* " estimation."
*/
typedef enum LDKConfirmationTarget {
/**
* " We are happy with this transaction confirming slowly when feerate drops some."
*/
LDKConfirmationTarget_Background,
/**
* " We'd like this transaction to confirm without major delay, but 12-18 blocks is fine."
*/
LDKConfirmationTarget_Normal,
/**
* " We'd like this transaction to confirm in the next few blocks."
*/
LDKConfirmationTarget_HighPriority,
/**
* Must be last for serialization purposes
*/
LDKConfirmationTarget_Sentinel,
} LDKConfirmationTarget;
/**
* " An enum representing the available verbosity levels of the logger."
*/
typedef enum LDKLevel {
/**
* "Designates logger being silent"
*/
LDKLevel_Off,
/**
* " Designates very serious errors"
*/
LDKLevel_Error,
/**
* " Designates hazardous situations"
*/
LDKLevel_Warn,
/**
* " Designates useful information"
*/
LDKLevel_Info,
/**
* " Designates lower priority information"
*/
LDKLevel_Debug,
/**
* " Designates very low priority, often extremely verbose, information"
*/
LDKLevel_Trace,
/**
* Must be last for serialization purposes
*/
LDKLevel_Sentinel,
} LDKLevel;
typedef enum LDKNetwork {
LDKNetwork_Bitcoin,
LDKNetwork_Testnet,
LDKNetwork_Regtest,
/**
* Must be last for serialization purposes
*/
LDKNetwork_Sentinel,
} LDKNetwork;
/**
* Arbitrary 32 bytes, which could represent one of a few different things. You probably want to
* look up the corresponding function in rust-lightning's docs.
*/
typedef struct LDKThirtyTwoBytes {
uint8_t data[32];
} LDKThirtyTwoBytes;
typedef struct LDKC2TupleTempl_ThirtyTwoBytes__u32 {
LDKThirtyTwoBytes *a;
uint32_t *b;
} LDKC2TupleTempl_ThirtyTwoBytes__u32;
typedef LDKC2TupleTempl_ThirtyTwoBytes__u32 LDKC2Tuple_Txidu32Z;
typedef struct LDKCVecTempl_u8 {
uint8_t *data;
uintptr_t datalen;
} LDKCVecTempl_u8;
typedef LDKCVecTempl_u8 LDKCVec_u8Z;
typedef struct LDKC2TupleTempl_CVec_u8Z__u64 {
LDKCVec_u8Z *a;
uint64_t *b;
} LDKC2TupleTempl_CVec_u8Z__u64;
typedef LDKC2TupleTempl_CVec_u8Z__u64 LDKC2Tuple_Scriptu64Z;
typedef struct LDKC2TupleTempl_u64__u64 {
uint64_t *a;
uint64_t *b;
} LDKC2TupleTempl_u64__u64;
typedef LDKC2TupleTempl_u64__u64 LDKC2Tuple_u64u64Z;
typedef struct LDKSignature {
uint8_t compact_form[64];
} LDKSignature;
typedef struct LDKCVecTempl_Signature {
LDKSignature *data;
uintptr_t datalen;
} LDKCVecTempl_Signature;
typedef struct LDKC2TupleTempl_Signature__CVecTempl_Signature {
LDKSignature *a;
LDKCVecTempl_Signature *b;
} LDKC2TupleTempl_Signature__CVecTempl_Signature;
typedef LDKC2TupleTempl_Signature__CVecTempl_Signature LDKC2Tuple_SignatureCVec_SignatureZZ;
typedef LDKCVecTempl_Signature LDKCVec_SignatureZ;
typedef union LDKCResultPtr_C2TupleTempl_Signature__CVecTempl_Signature________u8 {
LDKC2TupleTempl_Signature__CVecTempl_Signature *result;
uint8_t *err;
} LDKCResultPtr_C2TupleTempl_Signature__CVecTempl_Signature________u8;
typedef struct LDKCResultTempl_C2TupleTempl_Signature__CVecTempl_Signature________u8 {
LDKCResultPtr_C2TupleTempl_Signature__CVecTempl_Signature________u8 contents;
bool result_good;
} LDKCResultTempl_C2TupleTempl_Signature__CVecTempl_Signature________u8;
typedef LDKCResultTempl_C2TupleTempl_Signature__CVecTempl_Signature________u8 LDKCResult_C2Tuple_SignatureCVec_SignatureZZNoneZ;
typedef union LDKCResultPtr_Signature__u8 {
LDKSignature *result;
uint8_t *err;
} LDKCResultPtr_Signature__u8;
typedef struct LDKCResultTempl_Signature__u8 {
LDKCResultPtr_Signature__u8 contents;
bool result_good;
} LDKCResultTempl_Signature__u8;
typedef LDKCResultTempl_Signature__u8 LDKCResult_SignatureNoneZ;
typedef struct LDKSecretKey {
uint8_t bytes[32];
} LDKSecretKey;
typedef struct LDKC2TupleTempl_SecretKey__ThirtyTwoBytes {
LDKSecretKey *a;
LDKThirtyTwoBytes *b;
} LDKC2TupleTempl_SecretKey__ThirtyTwoBytes;
typedef LDKC2TupleTempl_SecretKey__ThirtyTwoBytes LDKC2Tuple_SecretKey_u832Z;
/**
* A Rust str object, ie a reference to a UTF8-valid string.
* This is *not* null-terminated so cannot be used directly as a C string!
*/
typedef struct LDKStr {
const uint8_t *chars;
uintptr_t len;
} LDKStr;
/**
* " Indicates an error on the client's part (usually some variant of attempting to use too-low or"
* " too-high values)"
*/
typedef enum LDKAPIError_Tag {
/**
* " Indicates the API was wholly misused (see err for more). Cases where these can be returned"
* " are documented, but generally indicates some precondition of a function was violated."
*/
LDKAPIError_APIMisuseError,
/**
* " Due to a high feerate, we were unable to complete the request."
* " For example, this may be returned if the feerate implies we cannot open a channel at the"
* " requested value, but opening a larger channel would succeed."
*/
LDKAPIError_FeeRateTooHigh,
/**
* " A malformed Route was provided (eg overflowed value, node id mismatch, overly-looped route,"
* " too-many-hops, etc)."
*/
LDKAPIError_RouteError,
/**
* " We were unable to complete the request as the Channel required to do so is unable to"
* " complete the request (or was not found). This can take many forms, including disconnected"
* " peer, channel at capacity, channel shutting down, etc."
*/
LDKAPIError_ChannelUnavailable,
/**
* " An attempt to call add/update_monitor returned an Err (ie you did this!), causing the"
* " attempted action to fail."
*/
LDKAPIError_MonitorUpdateFailed,
/**
* Must be last for serialization purposes
*/
LDKAPIError_Sentinel,
} LDKAPIError_Tag;
typedef struct LDKAPIError_LDKAPIMisuseError_Body {
LDKStr err;
} LDKAPIError_LDKAPIMisuseError_Body;
typedef struct LDKAPIError_LDKFeeRateTooHigh_Body {
LDKCVec_u8Z err;
uint64_t feerate;
} LDKAPIError_LDKFeeRateTooHigh_Body;
typedef struct LDKAPIError_LDKRouteError_Body {
LDKStr err;
} LDKAPIError_LDKRouteError_Body;
typedef struct LDKAPIError_LDKChannelUnavailable_Body {
LDKStr err;
} LDKAPIError_LDKChannelUnavailable_Body;
typedef struct LDKAPIError {
LDKAPIError_Tag tag;
union {
LDKAPIError_LDKAPIMisuseError_Body api_misuse_error;
LDKAPIError_LDKFeeRateTooHigh_Body fee_rate_too_high;
LDKAPIError_LDKRouteError_Body route_error;
LDKAPIError_LDKChannelUnavailable_Body channel_unavailable;
};
} LDKAPIError;
typedef union LDKCResultPtr_u8__APIError {
uint8_t *result;
LDKAPIError *err;
} LDKCResultPtr_u8__APIError;
typedef struct LDKCResultTempl_u8__APIError {
LDKCResultPtr_u8__APIError contents;
bool result_good;
} LDKCResultTempl_u8__APIError;
typedef LDKCResultTempl_u8__APIError LDKCResult_NoneAPIErrorZ;
/**
* " If a payment fails to send, it can be in one of several states. This enum is returned as the"
* " Err() type describing which state the payment is in, see the description of individual enum"
* " states for more."
*/
typedef struct MUST_USE_STRUCT LDKPaymentSendFailure {
/**
* Nearly everyhwere, inner must be non-null, however in places where
*the Rust equivalent takes an Option, it may be set to null to indicate None.
*/
const LDKlnPaymentSendFailure *inner;
bool _underlying_ref;
} LDKPaymentSendFailure;
typedef union LDKCResultPtr_u8__PaymentSendFailure {
uint8_t *result;
LDKPaymentSendFailure *err;
} LDKCResultPtr_u8__PaymentSendFailure;
typedef struct LDKCResultTempl_u8__PaymentSendFailure {
LDKCResultPtr_u8__PaymentSendFailure contents;
bool result_good;
} LDKCResultTempl_u8__PaymentSendFailure;
typedef LDKCResultTempl_u8__PaymentSendFailure LDKCResult_NonePaymentSendFailureZ;
typedef union LDKCResultPtr_u8__ChannelMonitorUpdateErr {
uint8_t *result;
LDKChannelMonitorUpdateErr *err;
} LDKCResultPtr_u8__ChannelMonitorUpdateErr;
typedef struct LDKCResultTempl_u8__ChannelMonitorUpdateErr {
LDKCResultPtr_u8__ChannelMonitorUpdateErr contents;
bool result_good;
} LDKCResultTempl_u8__ChannelMonitorUpdateErr;
typedef LDKCResultTempl_u8__ChannelMonitorUpdateErr LDKCResult_NoneChannelMonitorUpdateErrZ;
/**
* " General Err type for ChannelMonitor actions. Generally, this implies that the data provided is"
* " inconsistent with the ChannelMonitor being called. eg for ChannelMonitor::update_monitor this"
* " means you tried to update a monitor for a different channel or the ChannelMonitorUpdate was"
* " corrupted."
* " Contains a human-readable error message."
*/
typedef struct MUST_USE_STRUCT LDKMonitorUpdateError {
/**
* Nearly everyhwere, inner must be non-null, however in places where
*the Rust equivalent takes an Option, it may be set to null to indicate None.
*/
const LDKlnMonitorUpdateError *inner;
bool _underlying_ref;
} LDKMonitorUpdateError;
typedef union LDKCResultPtr_u8__MonitorUpdateError {
uint8_t *result;
LDKMonitorUpdateError *err;
} LDKCResultPtr_u8__MonitorUpdateError;
typedef struct LDKCResultTempl_u8__MonitorUpdateError {
LDKCResultPtr_u8__MonitorUpdateError contents;
bool result_good;
} LDKCResultTempl_u8__MonitorUpdateError;
typedef LDKCResultTempl_u8__MonitorUpdateError LDKCResult_NoneMonitorUpdateErrorZ;
/**
* " A reference to a transaction output."
* ""
* " Differs from bitcoin::blockdata::transaction::OutPoint as the index is a u16 instead of u32"
* " due to LN's restrictions on index values. Should reduce (possibly) unsafe conversions this way."
*/
typedef struct MUST_USE_STRUCT LDKOutPoint {
/**
* Nearly everyhwere, inner must be non-null, however in places where
*the Rust equivalent takes an Option, it may be set to null to indicate None.
*/
const LDKlnOutPoint *inner;
bool _underlying_ref;
} LDKOutPoint;
typedef struct LDKC2TupleTempl_OutPoint__CVec_u8Z {
LDKOutPoint *a;
LDKCVec_u8Z *b;
} LDKC2TupleTempl_OutPoint__CVec_u8Z;
typedef LDKC2TupleTempl_OutPoint__CVec_u8Z LDKC2Tuple_OutPointScriptZ;
/**
* " A channel_announcement message to be sent or received from a peer"
*/
typedef struct MUST_USE_STRUCT LDKChannelAnnouncement {
/**
* Nearly everyhwere, inner must be non-null, however in places where
*the Rust equivalent takes an Option, it may be set to null to indicate None.
*/
const LDKlnChannelAnnouncement *inner;
bool _underlying_ref;
} LDKChannelAnnouncement;
/**
* " A channel_update message to be sent or received from a peer"
*/
typedef struct MUST_USE_STRUCT LDKChannelUpdate {
/**
* Nearly everyhwere, inner must be non-null, however in places where
*the Rust equivalent takes an Option, it may be set to null to indicate None.
*/
const LDKlnChannelUpdate *inner;
bool _underlying_ref;
} LDKChannelUpdate;
typedef struct LDKC3TupleTempl_ChannelAnnouncement__ChannelUpdate__ChannelUpdate {
LDKChannelAnnouncement *a;
LDKChannelUpdate *b;
LDKChannelUpdate *c;
} LDKC3TupleTempl_ChannelAnnouncement__ChannelUpdate__ChannelUpdate;
typedef LDKC3TupleTempl_ChannelAnnouncement__ChannelUpdate__ChannelUpdate LDKC3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ;
/**
* " Error for PeerManager errors. If you get one of these, you must disconnect the socket and"
* " generate no further read_event/write_buffer_space_avail calls for the descriptor, only"
* " triggering a single socket_disconnected call (unless it was provided in response to a"
* " new_*_connection event, in which case no such socket_disconnected() must be called and the"
* " socket silently disconencted)."
*/
typedef struct MUST_USE_STRUCT LDKPeerHandleError {
/**
* Nearly everyhwere, inner must be non-null, however in places where
*the Rust equivalent takes an Option, it may be set to null to indicate None.
*/
const LDKlnPeerHandleError *inner;
bool _underlying_ref;
} LDKPeerHandleError;
typedef union LDKCResultPtr_u8__PeerHandleError {
uint8_t *result;
LDKPeerHandleError *err;
} LDKCResultPtr_u8__PeerHandleError;
typedef struct LDKCResultTempl_u8__PeerHandleError {
LDKCResultPtr_u8__PeerHandleError contents;
bool result_good;
} LDKCResultTempl_u8__PeerHandleError;
typedef LDKCResultTempl_u8__PeerHandleError LDKCResult_NonePeerHandleErrorZ;
/**
* " When on-chain outputs are created by rust-lightning (which our counterparty is not able to"
* " claim at any point in the future) an event is generated which you must track and be able to"
* " spend on-chain. The information needed to do this is provided in this enum, including the"
* " outpoint describing which txid and output index is available, the full output which exists at"
* " that txid/index, and any keys or other information required to sign."
*/
typedef struct MUST_USE_STRUCT LDKSpendableOutputDescriptor {
/**
* Nearly everyhwere, inner must be non-null, however in places where
*the Rust equivalent takes an Option, it may be set to null to indicate None.
*/
const LDKlnSpendableOutputDescriptor *inner;
bool _underlying_ref;
} LDKSpendableOutputDescriptor;
typedef struct LDKCVecTempl_SpendableOutputDescriptor {
LDKSpendableOutputDescriptor *data;
uintptr_t datalen;
} LDKCVecTempl_SpendableOutputDescriptor;
typedef LDKCVecTempl_SpendableOutputDescriptor LDKCVec_SpendableOutputDescriptorZ;
/**
* " An Event which you should probably take some action in response to."
* ""
* " Note that while Writeable and Readable are implemented for Event, you probably shouldn't use"
* " them directly as they don't round-trip exactly (for example FundingGenerationReady is never"
* " written as it makes no sense to respond to it after reconnecting to peers)."
*/
typedef enum LDKEvent_Tag {
/**
* " Used to indicate that the client should generate a funding transaction with the given"
* " parameters and then call ChannelManager::funding_transaction_generated."
* " Generated in ChannelManager message handling."
* " Note that *all inputs* in the funding transaction must spend SegWit outputs or your"
* " counterparty can steal your funds!"
*/
LDKEvent_FundingGenerationReady,
/**
* " Used to indicate that the client may now broadcast the funding transaction it created for a"
* " channel. Broadcasting such a transaction prior to this event may lead to our counterparty"
* " trivially stealing all funds in the funding transaction!"
*/
LDKEvent_FundingBroadcastSafe,
/**
* " Indicates we've received money! Just gotta dig out that payment preimage and feed it to"
* " ChannelManager::claim_funds to get it...."
* " Note that if the preimage is not known or the amount paid is incorrect, you should call"
* " ChannelManager::fail_htlc_backwards to free up resources for this HTLC and avoid"
* " network congestion."
* " The amount paid should be considered 'incorrect' when it is less than or more than twice"
* " the amount expected."
* " If you fail to call either ChannelManager::claim_funds or"
* " ChannelManager::fail_htlc_backwards within the HTLC's timeout, the HTLC will be"
* " automatically failed."
*/
LDKEvent_PaymentReceived,
/**
* " Indicates an outbound payment we made succeeded (ie it made it all the way to its target"
* " and we got back the payment preimage for it)."
* " Note that duplicative PaymentSent Events may be generated - it is your responsibility to"
* " deduplicate them by payment_preimage (which MUST be unique)!"
*/
LDKEvent_PaymentSent,
/**
* " Indicates an outbound payment we made failed. Probably some intermediary node dropped"
* " something. You may wish to retry with a different route."
* " Note that duplicative PaymentFailed Events may be generated - it is your responsibility to"
* " deduplicate them by payment_hash (which MUST be unique)!"
*/
LDKEvent_PaymentFailed,
/**
* " Used to indicate that ChannelManager::process_pending_htlc_forwards should be called at a"
* " time in the future."
*/
LDKEvent_PendingHTLCsForwardable,
/**
* " Used to indicate that an output was generated on-chain which you should know how to spend."
* " Such an output will *not* ever be spent by rust-lightning, and are not at risk of your"
* " counterparty spending them due to some kind of timeout. Thus, you need to store them"
* " somewhere and spend them when you create on-chain transactions."
*/
LDKEvent_SpendableOutputs,
/**
* Must be last for serialization purposes
*/
LDKEvent_Sentinel,
} LDKEvent_Tag;
typedef struct LDKEvent_LDKFundingGenerationReady_Body {
LDKThirtyTwoBytes temporary_channel_id;
uint64_t channel_value_satoshis;
LDKCVec_u8Z output_script;
uint64_t user_channel_id;
} LDKEvent_LDKFundingGenerationReady_Body;
typedef struct LDKEvent_LDKFundingBroadcastSafe_Body {
LDKOutPoint funding_txo;
uint64_t user_channel_id;
} LDKEvent_LDKFundingBroadcastSafe_Body;
typedef struct LDKEvent_LDKPaymentReceived_Body {
LDKThirtyTwoBytes payment_hash;
const LDKThirtyTwoBytes *payment_secret;
uint64_t amt;
} LDKEvent_LDKPaymentReceived_Body;
typedef struct LDKEvent_LDKPaymentSent_Body {
LDKThirtyTwoBytes payment_preimage;
} LDKEvent_LDKPaymentSent_Body;
typedef struct LDKEvent_LDKPaymentFailed_Body {
LDKThirtyTwoBytes payment_hash;
bool rejected_by_dest;
} LDKEvent_LDKPaymentFailed_Body;
typedef struct LDKEvent_LDKPendingHTLCsForwardable_Body {
uint64_t time_forwardable;
} LDKEvent_LDKPendingHTLCsForwardable_Body;
typedef struct LDKEvent_LDKSpendableOutputs_Body {
LDKCVec_SpendableOutputDescriptorZ outputs;
} LDKEvent_LDKSpendableOutputs_Body;
typedef struct LDKEvent {
LDKEvent_Tag tag;
union {
LDKEvent_LDKFundingGenerationReady_Body funding_generation_ready;
LDKEvent_LDKFundingBroadcastSafe_Body funding_broadcast_safe;
LDKEvent_LDKPaymentReceived_Body payment_received;
LDKEvent_LDKPaymentSent_Body payment_sent;
LDKEvent_LDKPaymentFailed_Body payment_failed;
LDKEvent_LDKPendingHTLCsForwardable_Body pending_htl_cs_forwardable;
LDKEvent_LDKSpendableOutputs_Body spendable_outputs;
};
} LDKEvent;
typedef struct LDKPublicKey {
uint8_t compressed_form[33];
} LDKPublicKey;
/**
* " An accept_channel message to be sent or received from a peer"
*/
typedef struct MUST_USE_STRUCT LDKAcceptChannel {
/**
* Nearly everyhwere, inner must be non-null, however in places where
*the Rust equivalent takes an Option, it may be set to null to indicate None.
*/
const LDKlnAcceptChannel *inner;
bool _underlying_ref;
} LDKAcceptChannel;
/**
* " An open_channel message to be sent or received from a peer"
*/
typedef struct MUST_USE_STRUCT LDKOpenChannel {
/**
* Nearly everyhwere, inner must be non-null, however in places where
*the Rust equivalent takes an Option, it may be set to null to indicate None.
*/
const LDKlnOpenChannel *inner;
bool _underlying_ref;
} LDKOpenChannel;
/**
* " A funding_created message to be sent or received from a peer"
*/
typedef struct MUST_USE_STRUCT LDKFundingCreated {
/**
* Nearly everyhwere, inner must be non-null, however in places where
*the Rust equivalent takes an Option, it may be set to null to indicate None.
*/
const LDKlnFundingCreated *inner;
bool _underlying_ref;
} LDKFundingCreated;
/**
* " A funding_signed message to be sent or received from a peer"
*/
typedef struct MUST_USE_STRUCT LDKFundingSigned {
/**
* Nearly everyhwere, inner must be non-null, however in places where
*the Rust equivalent takes an Option, it may be set to null to indicate None.
*/
const LDKlnFundingSigned *inner;
bool _underlying_ref;
} LDKFundingSigned;
/**
* " A funding_locked message to be sent or received from a peer"
*/
typedef struct MUST_USE_STRUCT LDKFundingLocked {
/**
* Nearly everyhwere, inner must be non-null, however in places where
*the Rust equivalent takes an Option, it may be set to null to indicate None.
*/
const LDKlnFundingLocked *inner;
bool _underlying_ref;
} LDKFundingLocked;
/**
* " An announcement_signatures message to be sent or received from a peer"
*/
typedef struct MUST_USE_STRUCT LDKAnnouncementSignatures {
/**
* Nearly everyhwere, inner must be non-null, however in places where
*the Rust equivalent takes an Option, it may be set to null to indicate None.
*/
const LDKlnAnnouncementSignatures *inner;
bool _underlying_ref;
} LDKAnnouncementSignatures;
/**
* " Struct used to return values from revoke_and_ack messages, containing a bunch of commitment"
* " transaction updates if they were pending."
*/
typedef struct MUST_USE_STRUCT LDKCommitmentUpdate {
/**
* Nearly everyhwere, inner must be non-null, however in places where
*the Rust equivalent takes an Option, it may be set to null to indicate None.
*/
const LDKlnCommitmentUpdate *inner;
bool _underlying_ref;
} LDKCommitmentUpdate;
/**
* " A revoke_and_ack message to be sent or received from a peer"
*/
typedef struct MUST_USE_STRUCT LDKRevokeAndACK {
/**
* Nearly everyhwere, inner must be non-null, however in places where
*the Rust equivalent takes an Option, it may be set to null to indicate None.
*/
const LDKlnRevokeAndACK *inner;
bool _underlying_ref;
} LDKRevokeAndACK;
/**
* " A closing_signed message to be sent or received from a peer"
*/
typedef struct MUST_USE_STRUCT LDKClosingSigned {
/**
* Nearly everyhwere, inner must be non-null, however in places where
*the Rust equivalent takes an Option, it may be set to null to indicate None.
*/
const LDKlnClosingSigned *inner;
bool _underlying_ref;
} LDKClosingSigned;
/**
* " A shutdown message to be sent or received from a peer"
*/
typedef struct MUST_USE_STRUCT LDKShutdown {
/**
* Nearly everyhwere, inner must be non-null, however in places where
*the Rust equivalent takes an Option, it may be set to null to indicate None.
*/
const LDKlnShutdown *inner;
bool _underlying_ref;
} LDKShutdown;
/**
* " A channel_reestablish message to be sent or received from a peer"
*/
typedef struct MUST_USE_STRUCT LDKChannelReestablish {
/**
* Nearly everyhwere, inner must be non-null, however in places where
*the Rust equivalent takes an Option, it may be set to null to indicate None.
*/
const LDKlnChannelReestablish *inner;
bool _underlying_ref;
} LDKChannelReestablish;
/**
* " A node_announcement message to be sent or received from a peer"
*/
typedef struct MUST_USE_STRUCT LDKNodeAnnouncement {
/**
* Nearly everyhwere, inner must be non-null, however in places where
*the Rust equivalent takes an Option, it may be set to null to indicate None.
*/
const LDKlnNodeAnnouncement *inner;
bool _underlying_ref;
} LDKNodeAnnouncement;
/**
* " An error message to be sent or received from a peer"
*/
typedef struct MUST_USE_STRUCT LDKErrorMessage {
/**
* Nearly everyhwere, inner must be non-null, however in places where
*the Rust equivalent takes an Option, it may be set to null to indicate None.
*/
const LDKlnErrorMessage *inner;
bool _underlying_ref;
} LDKErrorMessage;
/**
* " Used to put an error message in a LightningError"
*/
typedef enum LDKErrorAction_Tag {
/**
* " The peer took some action which made us think they were useless. Disconnect them."
*/
LDKErrorAction_DisconnectPeer,
/**
* " The peer did something harmless that we weren't able to process, just log and ignore"
*/
LDKErrorAction_IgnoreError,
/**
* " The peer did something incorrect. Tell them."
*/
LDKErrorAction_SendErrorMessage,
/**
* Must be last for serialization purposes
*/
LDKErrorAction_Sentinel,
} LDKErrorAction_Tag;
typedef struct LDKErrorAction_LDKDisconnectPeer_Body {
LDKErrorMessage msg;
} LDKErrorAction_LDKDisconnectPeer_Body;
typedef struct LDKErrorAction_LDKSendErrorMessage_Body {
LDKErrorMessage msg;
} LDKErrorAction_LDKSendErrorMessage_Body;
typedef struct LDKErrorAction {
LDKErrorAction_Tag tag;
union {
LDKErrorAction_LDKDisconnectPeer_Body disconnect_peer;
LDKErrorAction_LDKSendErrorMessage_Body send_error_message;
};
} LDKErrorAction;
/**
* " The information we received from a peer along the route of a payment we originated. This is"
* " returned by ChannelMessageHandler::handle_update_fail_htlc to be passed into"
* " RoutingMessageHandler::handle_htlc_fail_channel_update to update our network map."
*/
typedef enum LDKHTLCFailChannelUpdate_Tag {
/**
* " We received an error which included a full ChannelUpdate message."
*/
LDKHTLCFailChannelUpdate_ChannelUpdateMessage,
/**
* " We received an error which indicated only that a channel has been closed"
*/
LDKHTLCFailChannelUpdate_ChannelClosed,
/**
* " We received an error which indicated only that a node has failed"
*/
LDKHTLCFailChannelUpdate_NodeFailure,
/**
* Must be last for serialization purposes
*/
LDKHTLCFailChannelUpdate_Sentinel,
} LDKHTLCFailChannelUpdate_Tag;
typedef struct LDKHTLCFailChannelUpdate_LDKChannelUpdateMessage_Body {
LDKChannelUpdate msg;
} LDKHTLCFailChannelUpdate_LDKChannelUpdateMessage_Body;
typedef struct LDKHTLCFailChannelUpdate_LDKChannelClosed_Body {
uint64_t short_channel_id;
bool is_permanent;
} LDKHTLCFailChannelUpdate_LDKChannelClosed_Body;
typedef struct LDKHTLCFailChannelUpdate_LDKNodeFailure_Body {
LDKPublicKey node_id;
bool is_permanent;
} LDKHTLCFailChannelUpdate_LDKNodeFailure_Body;
typedef struct LDKHTLCFailChannelUpdate {
LDKHTLCFailChannelUpdate_Tag tag;
union {
LDKHTLCFailChannelUpdate_LDKChannelUpdateMessage_Body channel_update_message;
LDKHTLCFailChannelUpdate_LDKChannelClosed_Body channel_closed;
LDKHTLCFailChannelUpdate_LDKNodeFailure_Body node_failure;
};
} LDKHTLCFailChannelUpdate;
/**
* " An event generated by ChannelManager which indicates a message should be sent to a peer (or"
* " broadcast to most peers)."
* " These events are handled by PeerManager::process_events if you are using a PeerManager."
*/
typedef enum LDKMessageSendEvent_Tag {
/**
* " Used to indicate that we've accepted a channel open and should send the accept_channel"
* " message provided to the given peer."
*/
LDKMessageSendEvent_SendAcceptChannel,
/**
* " Used to indicate that we've initiated a channel open and should send the open_channel"
* " message provided to the given peer."
*/
LDKMessageSendEvent_SendOpenChannel,
/**
* " Used to indicate that a funding_created message should be sent to the peer with the given node_id."
*/
LDKMessageSendEvent_SendFundingCreated,
/**
* " Used to indicate that a funding_signed message should be sent to the peer with the given node_id."
*/
LDKMessageSendEvent_SendFundingSigned,
/**
* " Used to indicate that a funding_locked message should be sent to the peer with the given node_id."
*/
LDKMessageSendEvent_SendFundingLocked,
/**
* " Used to indicate that an announcement_signatures message should be sent to the peer with the given node_id."
*/
LDKMessageSendEvent_SendAnnouncementSignatures,
/**
* " Used to indicate that a series of HTLC update messages, as well as a commitment_signed"
* " message should be sent to the peer with the given node_id."
*/
LDKMessageSendEvent_UpdateHTLCs,
/**
* " Used to indicate that a revoke_and_ack message should be sent to the peer with the given node_id."
*/
LDKMessageSendEvent_SendRevokeAndACK,
/**
* " Used to indicate that a closing_signed message should be sent to the peer with the given node_id."
*/
LDKMessageSendEvent_SendClosingSigned,
/**
* " Used to indicate that a shutdown message should be sent to the peer with the given node_id."
*/
LDKMessageSendEvent_SendShutdown,
/**
* " Used to indicate that a channel_reestablish message should be sent to the peer with the given node_id."
*/
LDKMessageSendEvent_SendChannelReestablish,
/**
* " Used to indicate that a channel_announcement and channel_update should be broadcast to all"
* " peers (except the peer with node_id either msg.contents.node_id_1 or msg.contents.node_id_2)."
* ""
* " Note that after doing so, you very likely (unless you did so very recently) want to call"
* " ChannelManager::broadcast_node_announcement to trigger a BroadcastNodeAnnouncement event."
* " This ensures that any nodes which see our channel_announcement also have a relevant"
* " node_announcement, including relevant feature flags which may be important for routing"
* " through or to us."
*/
LDKMessageSendEvent_BroadcastChannelAnnouncement,
/**
* " Used to indicate that a node_announcement should be broadcast to all peers."
*/
LDKMessageSendEvent_BroadcastNodeAnnouncement,
/**
* " Used to indicate that a channel_update should be broadcast to all peers."
*/
LDKMessageSendEvent_BroadcastChannelUpdate,
/**
* " Broadcast an error downstream to be handled"
*/
LDKMessageSendEvent_HandleError,
/**
* " When a payment fails we may receive updates back from the hop where it failed. In such"
* " cases this event is generated so that we can inform the network graph of this information."
*/
LDKMessageSendEvent_PaymentFailureNetworkUpdate,
/**
* Must be last for serialization purposes
*/
LDKMessageSendEvent_Sentinel,
} LDKMessageSendEvent_Tag;
typedef struct LDKMessageSendEvent_LDKSendAcceptChannel_Body {
LDKPublicKey node_id;
LDKAcceptChannel msg;
} LDKMessageSendEvent_LDKSendAcceptChannel_Body;
typedef struct LDKMessageSendEvent_LDKSendOpenChannel_Body {
LDKPublicKey node_id;
LDKOpenChannel msg;
} LDKMessageSendEvent_LDKSendOpenChannel_Body;