This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
from __future__ import unicode_literals, print_function, division | |
import argparse | |
import io | |
import os | |
import stat | |
import subprocess | |
import sys |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
syntax = "proto3"; | |
package iscsi_rpc; | |
service Iscsiadm { | |
rpc SendArgs(SendArgsRequest) returns (SendArgsReply) {} | |
rpc GetInitiatorName(GetInitiatorNameRequest) returns (GetInitiatorNameReply) {} | |
} | |
message SendArgsRequest { |