Skip to content

Commit 60b2633

Browse files
authored
Update HFP.go
Cleanup and HELLO HFP packet init
1 parent 2e0663f commit 60b2633

File tree

1 file changed

+28
-20
lines changed

1 file changed

+28
-20
lines changed

HFP.go

+28-20
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"time"
1515
)
1616

17-
const AppVersion = "0.52"
17+
const AppVersion = "0.54"
1818

1919
var localAddr *string = flag.String("l", ":9060", "Local HEP listening address")
2020
var remoteAddr *string = flag.String("r", "192.168.2.2:9060", "Remote HEP address")
@@ -33,7 +33,7 @@ var (
3333
func initLoopbackConn(wg *sync.WaitGroup) {
3434

3535
//Connect loopback in
36-
_, err := net.DialTimeout("tcp4", *localAddr, 5*time.Second)
36+
outnet, err := net.DialTimeout("tcp4", *localAddr, 5*time.Second)
3737

3838
if err != nil {
3939
log.Println("||-->X INITIAL Loopback IN", err)
@@ -43,19 +43,25 @@ func initLoopbackConn(wg *sync.WaitGroup) {
4343
for range time.Tick(time.Second * 5) {
4444
conn, err_outreconn := net.DialTimeout("tcp4", *localAddr, 5*time.Second)
4545
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)
4747

4848
} else {
49-
50-
log.Println("||-->V Dial OUT reconnected INIT loopback", err_outreconn)
49+
log.Println("||-->V Dial OUT reconnected INIT loopback", conn)
5150
break
5251
}
5352
}
5453
return
5554

5655
} 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+
5965
}
6066

6167
wg.Done()
@@ -84,23 +90,20 @@ func copyHEPbufftoFile(inbytes []byte, file string) (int64, error) {
8490

8591
}
8692

87-
func copyHEPFileOut(file string, outnet net.Conn) (int, error) {
93+
func copyHEPFileOut(outnet net.Conn) (int, error) {
8894

8995
HEPFileData, HEPFileDataerr := ioutil.ReadFile(HEPsavefile)
9096
if HEPFileDataerr != nil {
9197
fmt.Println("Read HEP file error", HEPFileDataerr)
9298
}
9399

94-
rConn, err := net.DialTimeout("tcp4", *remoteAddr, 5*time.Second)
95-
96100
//Send Logged HEP upon reconnect out to backend
97-
hl, err := rConn.Write(HEPFileData)
101+
hl, err := outnet.Write(HEPFileData)
98102
if err != nil {
99103
log.Println("||-->X Send HEP from LOG error", err)
100104
AppLogger.Println("||-->X Send HEP from LOG error", err)
101105
hepFileFlushesError.Inc()
102106
} else {
103-
104107
fi, err := os.Stat(HEPsavefile)
105108
if err != nil {
106109
log.Println("Cannot stat HEP log file", err)
@@ -118,9 +121,6 @@ func copyHEPFileOut(file string, outnet net.Conn) (int, error) {
118121
}
119122
}
120123

121-
defer rConn.Close()
122-
// nBytes, err := io.Copy(destination, innet)
123-
124124
return hl, err
125125
}
126126

@@ -181,7 +181,7 @@ func proxyConn(conn *net.TCPConn) {
181181
conn, err_outreconn := net.DialTimeout("tcp4", *remoteAddr, 5*time.Second)
182182
if err_outreconn == nil {
183183
log.Println("||-->V Dial OUT reconnected", conn)
184-
copyHEPFileOut(HEPsavefile, conn)
184+
copyHEPFileOut(conn)
185185
break
186186
}
187187
log.Println("||-->X Dial OUT reconnect failure - retrying", err_outreconn)
@@ -192,7 +192,7 @@ func proxyConn(conn *net.TCPConn) {
192192
log.Println("||--> Connected OUT", rConn.RemoteAddr())
193193
AppLogger.Println("||--> Connected OUT", rConn.RemoteAddr())
194194
connectionStatus.Set(1)
195-
copyHEPFileOut(HEPsavefile, rConn)
195+
copyHEPFileOut(rConn)
196196
}
197197

198198
defer rConn.Close()
@@ -231,7 +231,7 @@ func proxyConn(conn *net.TCPConn) {
231231

232232
var accepted bool = false
233233
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" {
235235

236236
//Send HEP out to backend
237237
if _, err_HEPout := fmt.Fprint(rConn, string(buf[:data])); err_HEPout != nil {
@@ -242,7 +242,11 @@ func proxyConn(conn *net.TCPConn) {
242242
return
243243
} else {
244244
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+
}
246250
}
247251
accepted = true
248252

@@ -303,7 +307,11 @@ func proxyConn(conn *net.TCPConn) {
303307
return
304308
} else {
305309
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+
}
307315
}
308316
}
309317
}

0 commit comments

Comments
 (0)