1

私はDWM(ubuntu linux)のバーを構築し、ssidなどのwifiの詳細を表示しています。

それは私のコードです:

#include <stdio.h>
#include <stdlib.h>


int main( int argc, char *argv[] )
{

  FILE *fp;
  int status;
  char path[1035];

  /* Open the command for reading. */
  fp = popen("iwconfig", "r");
  if (fp == NULL) {
    printf("Failed to run command\n" );
    exit;
  }
   char s[500];

  /* Read the output a line at a time - output it. */
  while (fgets(path, sizeof(path)-1, fp) != NULL) {
    sprintf(s,"%s%s",s, path);
  }
    //printf("%s",s);
  /* close */
  pclose(fp);


    char delimiter[1] = "s";
    char *ptr;

    ptr = strtok(s, delimiter);

        printf("SSID: %s\n", ptr);


  return 0;
}

オーバーフローエラーが発生し、何をすべきかわかりません。ssid を取得する良い方法だとは思いません... :/ 提案はありますか?

4

1 に答える 1

1

サブプロセスを呼び出すよりも、カーネルからの直接的な情報 (netdevice(7) など) を使用したいと考えています。

たぶん、このヘッダーが役立つかもしれません: http://lxr.free-electrons.com/source/include/linux/wireless.h

編集:まだ使用したい場合はpopen、追加するだけではありません| grep Essid:か?

$ /sbin/ifconfig 2>/dev/null | grep ESSID | cut -d: -f2
"pink-panter"
于 2012-10-28T22:58:28.737 に答える