|
67 | 67 | (maps:put 'requests #m())))
|
68 | 68 | (actions `(#(#(timeout reconnect) ,(backoff:get b) undefined))))
|
69 | 69 | `#(keep_state ,data ,actions)))
|
70 |
| - (('internal 'connect (= `#m(host ,host port ,port tcp-opts ,opts) data)) |
| 70 | + (('internal 'connect (= `#m(host ,host port ,port tcp-opts ,opts backoff ,b) data)) |
71 | 71 | (case (gen_tcp:connect host port opts)
|
72 | 72 | (`#(ok ,sock) `#(next_state connected ,(maps:put 'socket sock data)))
|
73 |
| - (`#(error ,err) (progn |
| 73 | + (`#(error ,err) (let ((actions `(#(#(timeout reconnect) ,(backoff:get b) undefined)))) |
74 | 74 | (io:format "Connection failed: ~ts~n" `(,(inet:format_error err)))
|
75 |
| - 'keep_state_and_data)))) |
| 75 | + `#(keep_state ,data ,actions))))) |
76 | 76 | (('#(timeout reconnect) _ (= `#m(backoff ,b) data))
|
77 | 77 | (io:format "Attempting to reconnect ...~n")
|
78 | 78 | (let ((`#(,_ ,b) (backoff:fail b)))
|
|
89 | 89 | (defun connected
|
90 | 90 | (('enter _old-state (= `#m(backoff ,b) data))
|
91 | 91 | (let ((`#(,_ ,b) (backoff:succeed b)))
|
| 92 | + (io:format "Connected.") |
92 | 93 | `#(keep_state ,(mset data 'backoff b))))
|
93 | 94 | (('info `#(tcp_closed ,sock) (= `#m(socket ,sock) data))
|
94 | 95 | `#(next_state disconnected ,data))
|
|
0 commit comments