]> Cypherpunks.ru repositories - nncp.git/blob - src/ucspi.go
Raise copyright years
[nncp.git] / src / ucspi.go
1 /*
2 NNCP -- Node to Node copy, utilities for store-and-forward data exchange
3 Copyright (C) 2016-2022 Sergey Matveev <stargrave@stargrave.org>
4
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, version 3 of the License.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 */
17
18 package nncp
19
20 import (
21         "fmt"
22         "os"
23         "time"
24 )
25
26 const UCSPITCPClient = "UCSPI-TCP-CLIENT"
27
28 type UCSPIConn struct {
29         R *os.File
30         W *os.File
31 }
32
33 func (c UCSPIConn) Read(p []byte) (n int, err error) {
34         return c.R.Read(p)
35 }
36
37 func (c UCSPIConn) Write(p []byte) (n int, err error) {
38         return c.W.Write(p)
39 }
40
41 func (c UCSPIConn) SetReadDeadline(t time.Time) error {
42         return c.R.SetReadDeadline(t)
43 }
44
45 func (c UCSPIConn) SetWriteDeadline(t time.Time) error {
46         return c.W.SetWriteDeadline(t)
47 }
48
49 func (c UCSPIConn) Close() error {
50         if err := c.R.Close(); err != nil {
51                 c.W.Close()
52                 return err
53         }
54         return c.W.Close()
55 }
56
57 func UCSPITCPRemoteAddr() (addr string) {
58         if proto := os.Getenv("PROTO"); proto == "TCP" {
59                 port := os.Getenv("TCPREMOTEPORT")
60                 if host := os.Getenv("TCPREMOTEHOST"); host == "" {
61                         addr = fmt.Sprintf("[%s]:%s", os.Getenv("TCPREMOTEIP"), port)
62                 } else {
63                         addr = fmt.Sprintf("%s:%s", host, port)
64                 }
65         }
66         return
67 }