syncRaftIdCheck.cpp 662 字节
Newer Older
1
#include <gtest/gtest.h>
2
#include "syncTest.h"
3 4 5 6 7 8 9 10 11 12 13 14

void usage(char* exe) {
  printf("Usage: %s host port \n", exe);
  printf("Usage: %s u64 \n", exe);
}

int main(int argc, char** argv) {
  if (argc == 2) {
    uint64_t u64 = atoll(argv[1]);
    char     host[128];
    uint16_t port;
    syncUtilU642Addr(u64, host, sizeof(host), &port);
M
Minghao Li 已提交
15
    printf("%" PRIu64 " -> %s:%d \n", u64, host, port);
16 17 18 19 20

  } else if (argc == 3) {
    uint64_t u64;
    char*    host = argv[1];
    uint16_t port = atoi(argv[2]);
21
    u64 = syncUtilAddr2U64(host, port);
S
Shengliang Guan 已提交
22
    printf("%s:%d ->: %" PRIu64 " \n", host, port, u64);
23 24 25 26 27 28 29
  } else {
    usage(argv[0]);
    exit(-1);
  }

  return 0;
}