@@ -14,7 +14,7 @@ import (
14
14
"time"
15
15
)
16
16
17
- const AppVersion = "0.52 "
17
+ const AppVersion = "0.54 "
18
18
19
19
var localAddr * string = flag .String ("l" , ":9060" , "Local HEP listening address" )
20
20
var remoteAddr * string = flag .String ("r" , "192.168.2.2:9060" , "Remote HEP address" )
33
33
func initLoopbackConn (wg * sync.WaitGroup ) {
34
34
35
35
//Connect loopback in
36
- _ , err := net .DialTimeout ("tcp4" , * localAddr , 5 * time .Second )
36
+ outnet , err := net .DialTimeout ("tcp4" , * localAddr , 5 * time .Second )
37
37
38
38
if err != nil {
39
39
log .Println ("||-->X INITIAL Loopback IN" , err )
@@ -43,19 +43,25 @@ func initLoopbackConn(wg *sync.WaitGroup) {
43
43
for range time .Tick (time .Second * 5 ) {
44
44
conn , err_outreconn := net .DialTimeout ("tcp4" , * localAddr , 5 * time .Second )
45
45
if err_outreconn != nil {
46
- log .Println ("||-->X Dial OUT INIT loopback reconnect failure - retrying" , conn )
46
+ log .Println ("||-->X Dial OUT INIT loopback reconnect failure - retrying" , err_outreconn )
47
47
48
48
} else {
49
-
50
- log .Println ("||-->V Dial OUT reconnected INIT loopback" , err_outreconn )
49
+ log .Println ("||-->V Dial OUT reconnected INIT loopback" , conn )
51
50
break
52
51
}
53
52
}
54
53
return
55
54
56
55
} else {
57
- log .Println ("||-->V INITIAL Dial LOOPBACK IN success" )
58
- AppLogger .Println ("|| -->V INITIAL Dial LOOPBACK IN success" )
56
+ _ , err := outnet .Write ([]byte ("HELLO HFP" ))
57
+ if err != nil {
58
+ log .Println ("||-->X Send HELLO HFP error" , err )
59
+ AppLogger .Println ("||-->X Send HELLO HFP error" , err )
60
+ } else {
61
+ log .Println ("-->HELLO HFP|| INITIAL Dial LOOPBACK IN success" )
62
+ AppLogger .Println ("-->HELLO HFP|| INITIAL Dial LOOPBACK IN success" )
63
+ }
64
+
59
65
}
60
66
61
67
wg .Done ()
@@ -84,23 +90,20 @@ func copyHEPbufftoFile(inbytes []byte, file string) (int64, error) {
84
90
85
91
}
86
92
87
- func copyHEPFileOut (file string , outnet net.Conn ) (int , error ) {
93
+ func copyHEPFileOut (outnet net.Conn ) (int , error ) {
88
94
89
95
HEPFileData , HEPFileDataerr := ioutil .ReadFile (HEPsavefile )
90
96
if HEPFileDataerr != nil {
91
97
fmt .Println ("Read HEP file error" , HEPFileDataerr )
92
98
}
93
99
94
- rConn , err := net .DialTimeout ("tcp4" , * remoteAddr , 5 * time .Second )
95
-
96
100
//Send Logged HEP upon reconnect out to backend
97
- hl , err := rConn .Write (HEPFileData )
101
+ hl , err := outnet .Write (HEPFileData )
98
102
if err != nil {
99
103
log .Println ("||-->X Send HEP from LOG error" , err )
100
104
AppLogger .Println ("||-->X Send HEP from LOG error" , err )
101
105
hepFileFlushesError .Inc ()
102
106
} else {
103
-
104
107
fi , err := os .Stat (HEPsavefile )
105
108
if err != nil {
106
109
log .Println ("Cannot stat HEP log file" , err )
@@ -118,9 +121,6 @@ func copyHEPFileOut(file string, outnet net.Conn) (int, error) {
118
121
}
119
122
}
120
123
121
- defer rConn .Close ()
122
- // nBytes, err := io.Copy(destination, innet)
123
-
124
124
return hl , err
125
125
}
126
126
@@ -181,7 +181,7 @@ func proxyConn(conn *net.TCPConn) {
181
181
conn , err_outreconn := net .DialTimeout ("tcp4" , * remoteAddr , 5 * time .Second )
182
182
if err_outreconn == nil {
183
183
log .Println ("||-->V Dial OUT reconnected" , conn )
184
- copyHEPFileOut (HEPsavefile , conn )
184
+ copyHEPFileOut (conn )
185
185
break
186
186
}
187
187
log .Println ("||-->X Dial OUT reconnect failure - retrying" , err_outreconn )
@@ -192,7 +192,7 @@ func proxyConn(conn *net.TCPConn) {
192
192
log .Println ("||--> Connected OUT" , rConn .RemoteAddr ())
193
193
AppLogger .Println ("||--> Connected OUT" , rConn .RemoteAddr ())
194
194
connectionStatus .Set (1 )
195
- copyHEPFileOut (HEPsavefile , rConn )
195
+ copyHEPFileOut (rConn )
196
196
}
197
197
198
198
defer rConn .Close ()
@@ -231,7 +231,7 @@ func proxyConn(conn *net.TCPConn) {
231
231
232
232
var accepted bool = false
233
233
for _ , ipf := range filterIPs {
234
- if hepPkt .SrcIP == string (ipf ) || hepPkt .DstIP == string (ipf ) {
234
+ if hepPkt .SrcIP == string (ipf ) || hepPkt .DstIP == string (ipf ) || string ( buf [: data ]) == "HELLO HFP" {
235
235
236
236
//Send HEP out to backend
237
237
if _ , err_HEPout := fmt .Fprint (rConn , string (buf [:data ])); err_HEPout != nil {
@@ -242,7 +242,11 @@ func proxyConn(conn *net.TCPConn) {
242
242
return
243
243
} else {
244
244
if * Debug == "on" {
245
- log .Println ("||--> Sending HEP OUT successful with filter for" , string (ipf ), "to" , rConn .RemoteAddr ())
245
+ if string (buf [:data ]) == "HELLO HFP" {
246
+ log .Println ("||--> Sending init HELLO HFP successful with filter for" , string (ipf ), "to" , rConn .RemoteAddr ())
247
+ } else {
248
+ log .Println ("||--> Sending HEP OUT successful with filter for" , string (ipf ), "to" , rConn .RemoteAddr ())
249
+ }
246
250
}
247
251
accepted = true
248
252
@@ -303,7 +307,11 @@ func proxyConn(conn *net.TCPConn) {
303
307
return
304
308
} else {
305
309
if * Debug == "on" {
306
- log .Println ("||--> Sending HEP OUT successful without filters to" , rConn .RemoteAddr ())
310
+ if string (buf [:data ]) == "HELLO HFP" {
311
+ log .Println ("||--> Sending init HELLO HFP successful without filters to" , rConn .RemoteAddr ())
312
+ } else {
313
+ log .Println ("||--> Sending HEP OUT successful without filters to" , rConn .RemoteAddr ())
314
+ }
307
315
}
308
316
}
309
317
}
0 commit comments