tem_multi_proxy 0.2.5 → 0.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG +2 -0
- data/lib/tem_multi_proxy/manager.rb +1 -1
- data/lib/tem_multi_proxy/server.rb +7 -2
- data/tem_multi_proxy.gemspec +1 -1
- metadata +1 -1
data/CHANGELOG
CHANGED
@@ -90,7 +90,7 @@ class Manager
|
|
90
90
|
def spawn_proxy_for_reader(reader)
|
91
91
|
proxy_port = alloc_proxy_port reader[:name]
|
92
92
|
proxy_pid = Zerg::Support::Process.spawn 'tem_proxy', [proxy_port.to_s],
|
93
|
-
:env => {'
|
93
|
+
:env => {'SCARD_PORT' => reader[:name], 'DEBUG' => 'no'},
|
94
94
|
:pgroup => true
|
95
95
|
@proxy_pids[reader[:name]] = proxy_pid
|
96
96
|
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# RPC
|
1
|
+
# RPC server for a tem_multi_proxy server.
|
2
2
|
#
|
3
3
|
# Author:: Victor Costan
|
4
4
|
# Copyright:: Copyright (C) 2009 Massachusetts Institute of Technology
|
@@ -11,7 +11,12 @@ require 'set'
|
|
11
11
|
|
12
12
|
# :nodoc: namespace
|
13
13
|
module Tem::MultiProxy
|
14
|
-
|
14
|
+
|
15
|
+
# RPC server for a tem_multi_proxy server.
|
16
|
+
#
|
17
|
+
# The server's RPC interface provides administrative information about the cards
|
18
|
+
# connected to it. To communicate with the smart-cards, use the transports in
|
19
|
+
# the smartcard gem (see the Smartcard::Iso namespace).
|
15
20
|
class Server
|
16
21
|
DEFAULT_PORT = 9051
|
17
22
|
|
data/tem_multi_proxy.gemspec
CHANGED