aboutsummaryrefslogtreecommitdiff
path: root/src/gnunet/service/connection.go
diff options
context:
space:
mode:
authorBernd Fix <brf@hoi-polloi.org>2022-08-15 14:02:05 +0200
committerBernd Fix <brf@hoi-polloi.org>2022-08-15 14:02:05 +0200
commitb62071330cd7e0445e89660d07b7aed098f80285 (patch)
tree85c1bbe055dff8bf027459121dc2fb958a846af4 /src/gnunet/service/connection.go
parent835c8e8b45487c1276426034b5afb915853b6eb1 (diff)
downloadgnunet-go-b62071330cd7e0445e89660d07b7aed098f80285.tar.gz
gnunet-go-b62071330cd7e0445e89660d07b7aed098f80285.zip
Milestone 2+3 (NLnet funding)v0.1.30
Diffstat (limited to 'src/gnunet/service/connection.go')
-rw-r--r--src/gnunet/service/connection.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gnunet/service/connection.go b/src/gnunet/service/connection.go
index d443160..fbc24d0 100644
--- a/src/gnunet/service/connection.go
+++ b/src/gnunet/service/connection.go
@@ -138,8 +138,8 @@ func (s *Connection) Receive(ctx context.Context) (message.Message, error) {
138} 138}
139 139
140// Receiver returns the receiving client (string representation) 140// Receiver returns the receiving client (string representation)
141func (s *Connection) Receiver() string { 141func (s *Connection) Receiver() *util.PeerID {
142 return fmt.Sprintf("uds:%d", s.id) 142 return nil
143} 143}
144 144
145//---------------------------------------------------------------------- 145//----------------------------------------------------------------------