mirror of
				https://github.com/node-red/node-red.git
				synced 2025-03-01 10:36:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			74 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!--
 | |
|   Copyright 2013 IBM Corp.
 | |
| 
 | |
|   Licensed under the Apache License, Version 2.0 (the "License");
 | |
|   you may not use this file except in compliance with the License.
 | |
|   You may obtain a copy of the License at
 | |
| 
 | |
|   http://www.apache.org/licenses/LICENSE-2.0
 | |
| 
 | |
|   Unless required by applicable law or agreed to in writing, software
 | |
|   distributed under the License is distributed on an "AS IS" BASIS,
 | |
|   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | |
|   See the License for the specific language governing permissions and
 | |
|   limitations under the License.
 | |
| -->
 | |
| 
 | |
| <script type="text/x-red" data-template-name="tcp out">
 | |
|     <div class="form-row">
 | |
|         <label for="node-input-host"><i class="icon-bookmark"></i> Host</label>
 | |
|         <input type="text" id="node-input-host" placeholder="localhost" style="width: 40%;" >
 | |
| 
 | |
|         <label for="node-input-port" style="margin-left: 10px; width: 35px;"> Port</label>
 | |
|         <input type="text" id="node-input-port" placeholder="Port" style="width: 45px">
 | |
|     </div>
 | |
|     <div class="form-row">
 | |
|         <label> </label>
 | |
|         <input type="checkbox" id="node-input-beserver" placeholder="server" style="display: inline-block; width: auto; vertical-align: top;">
 | |
|         <label for="node-input-beserver" style="width: 70%;">Be a server socket ?</label>
 | |
|     </div>
 | |
|     <div class="form-row">
 | |
|         <label> </label>
 | |
|         <input type="checkbox" id="node-input-base64" placeholder="base64" style="display: inline-block; width: auto; vertical-align: top;">
 | |
|         <label for="node-input-base64" style="width: 70%;">Decode Base64 message ?</label>
 | |
|     </div>
 | |
|     <div class="form-row">
 | |
|         <label for="node-input-name"><i class="icon-tag"></i> Name</label>
 | |
|         <input type="text" id="node-input-name" placeholder="Name">
 | |
|     </div>
 | |
|     <div class="form-tips">Tip: If you select server socket the host defaults to localhost.</div>
 | |
| 
 | |
| </script>
 | |
| 
 | |
| <script type="text/x-red" data-help-name="tcp out">
 | |
| 	<p>Provides a choice of tcp output connections. Can either connect out - or provide a socket connection.</p>
 | |
| 	<p>Only <b>msg.payload</b> is sent.</p>
 | |
| 	<p>You can select Base64 decoding if you want to decode a message encoded by the input socket.</p>
 | |
| </script>
 | |
| 
 | |
| <script type="text/javascript">
 | |
|     RED.nodes.registerType('tcp out',{
 | |
|         category: 'output',
 | |
|         color:"Silver",
 | |
|         defaults: {
 | |
|             host: {value:"127.0.0.1",required:true},
 | |
|             port: {value:"",required:true},
 | |
|             beserver: {value:false,required:true},
 | |
|             base64: {value:false,required:true},
 | |
|             name: {value:""}
 | |
|         },
 | |
|         inputs:1,
 | |
|         outputs:0,
 | |
|         icon: "bridge-dash.png",
 | |
|         align: "right",
 | |
|         label: function() {
 | |
| 			var lab = this.host+":"+this.port;
 | |
| 			if (this.server) lab = "tcp out:"+this.port;
 | |
|             return this.name||lab;
 | |
|         },
 | |
|         labelStyle: function() {
 | |
|             return (this.name)?"node_label_italic":"";
 | |
|         }
 | |
|     });
 | |
| </script>
 |