/* * Mausezahn - A fast versatile traffic generator * Copyright (C) 2008-2010 Herbert Haas * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 2 as published by the * Free Software Foundation. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License along with * this program; if not, see http://www.gnu.org/licenses/gpl-2.0.html * */ #include "mz.h" #include "cli.h" #include "mops.h" int cmd_port_source (struct cli_def *cli, const char *command, char *argv[], int argc) { u_int32_t t32=0; int validport=0; if ( (strcmp(argv[argc-1],"?")==0) || (argc>2) ) { cli_print(cli, "Specify the source port number:\n"); cli_print(cli, " []\r"); cli_print(cli, " random [norandom]\r"); cli_print(cli, "\n"); return CLI_OK; } if (mz_strcmp(argv[0], "random",1)==0) { clipkt->sp_isrand = 1; clipkt->sp_isrange = 0; } else if (mz_strcmp(argv[0], "norandom",1)==0) { clipkt->sp_isrand = 0; } else { if (!mz_strisnum(argv[0])) { cli_print(cli, "Unknown keyword\n"); return CLI_OK; } t32 = str2int(argv[0]); if (t32>65535) { cli_print(cli, "Port number cannot exceed 65535\n"); return CLI_OK; } else { clipkt->sp= (u_int16_t) t32; validport=1; clipkt->sp_isrange = 0; } } if ((argc==2) && (validport)) { if (!mz_strisnum(argv[1])) { cli_print(cli, "Invalid number\n"); return CLI_OK; } t32 = str2int(argv[1]); if (t32>65535) { cli_print(cli, "Port number cannot exceed 65535\n"); } else { clipkt->sp_start = clipkt->sp; clipkt->sp_stop = (u_int16_t) t32; clipkt->sp_isrange = 1; } } return CLI_OK; } int cmd_port_destination (struct cli_def *cli, const char *command, char *argv[], int argc) { u_int32_t t32=0; int validport=0; if ( (strcmp(argv[argc-1],"?")==0) || (argc>2) ) { cli_print(cli, "Specify the destination port number\r"); cli_print(cli, " []\r"); cli_print(cli, " random [norandom]\r"); cli_print(cli, "\n"); return CLI_OK; } if (mz_strcmp(argv[0], "random",1)==0) { clipkt->dp_isrand = 1; clipkt->dp_isrange = 0; } else if (mz_strcmp(argv[0], "norandom",1)==0) { clipkt->dp_isrand = 0; } else { if (!mz_strisnum(argv[0])) { cli_print(cli, "Unknown keyword\n"); return CLI_OK; } t32 = str2int(argv[0]); if (t32>65535) { cli_print(cli, "Port number cannot exceed 65535\n"); return CLI_OK; } else { clipkt->dp= (u_int16_t) t32; validport=1; clipkt->dp_isrange = 0; } } if ((argc==2) && (validport)) { if (!mz_strisnum(argv[1])) { cli_print(cli, "Invalid number\n"); return CLI_OK; } t32 = str2int(argv[1]); if (t32>65535) { cli_print(cli, "Port number cannot exceed 65535\n"); } else { clipkt->dp_start = clipkt->dp; clipkt->dp_stop = (u_int16_t) t32; clipkt->dp_isrange = 1; } } return CLI_OK; } int cmd_udp_sum (struct cli_def *cli, const char *command, char *argv[], int argc) { int sum; if ( (strcmp(argv[argc-1],"?")==0) || (argc>1) ) { cli_print(cli, "Specify the UDP checksum:\n"); cli_print(cli, " - either in hexadecimal format (0-ffff)\r"); cli_print(cli, " - or use the keyword 'auto' (default)\r"); cli_print(cli, " - or use the keyword 'unset'\r"); cli_print(cli, "\r"); cli_print(cli, "By default, the checksum is computed automatically. The keyword\r"); cli_print(cli, "'unset' signals the receiver that the checksum has not be computed\r"); cli_print(cli, "and should be ignored.\n"); return CLI_OK; } if (mz_strcmp(argv[0], "auto", 2)==0) { clipkt->udp_sum_false=0; return CLI_OK; } if (mz_strcmp(argv[0], "unset", 2)==0) { clipkt->udp_sum_false=1; clipkt->udp_sum = 0xffff; return CLI_OK; } sum = (int) xstr2int(argv[0]); if (sum>0xffff) { cli_print(cli, "The checksum must be within range 0..ffff\n"); return CLI_OK; } clipkt->udp_sum = (u_int16_t) sum; clipkt->udp_sum_false=1; return CLI_OK; } int cmd_udp_len (struct cli_def *cli, const char *command, char *argv[], int argc) { if ( (strcmp(argv[argc-1],"?")==0) || (argc>1) ) { cli_print(cli, "Specify the UDP length\r"); cli_print(cli, "\n"); return CLI_OK; } cli_print(cli, "Not supported in this version.\n"); return CLI_OK; } int cmd_udp_end(struct cli_def *cli, const char *command, char *argv[], int argc) { char prompt[16]; sprintf(prompt, "pkt-%i",clipkt->id); cli_set_configmode(cli, MZ_MODE_PACKET, prompt); return CLI_OK; } an='2' class='oid'>3da988896640ff47a47d7d1c5a6407a902c184e2 parent1deeaa0b86973bef6629396cc0f5f092872bb6de (diff)parentf181d6a3bcc35633facf5f3925699021c13492c5 (diff)
Merge tag 'mac80211-next-for-davem-2017-02-09' of git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next
Johannes Berg says: ==================== Some more updates: * use shash in mac80211 crypto code where applicable * some documentation fixes * pass RSSI levels up in change notifications * remove unused rfkill-regulator * various other cleanups ==================== Signed-off-by: David S. Miller <davem@davemloft.net>
he IO submission flow, in addition to supporting new features such as a ZBC-base drive and multiple devices. It also includes some major bug fixes such as: - checkpoint version control - fdatasync-related roll-forward recovery routine - memory boundary or null-pointer access in corner cases - missing error cases It has various minor clean-up patches as well" * tag 'for-f2fs-4.10' of git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs: (66 commits) f2fs: fix a missing size change in f2fs_setattr f2fs: fix to access nullified flush_cmd_control pointer f2fs: free meta pages if sanity check for ckpt is failed f2fs: detect wrong layout f2fs: call sync_fs when f2fs is idle Revert "f2fs: use percpu_counter for # of dirty pages in inode" f2fs: return AOP_WRITEPAGE_ACTIVATE for writepage f2fs: do not activate auto_recovery for fallocated i_size f2fs: fix to determine start_cp_addr by sbi->cur_cp_pack f2fs: fix 32-bit build f2fs: set ->owner for debugfs status file's file_operations f2fs: fix incorrect free inode count in ->statfs f2fs: drop duplicate header timer.h f2fs: fix wrong AUTO_RECOVER condition f2fs: do not recover i_size if it's valid f2fs: fix fdatasync f2fs: fix to account total free nid correctly f2fs: fix an infinite loop when flush nodes in cp f2fs: don't wait writeback for datas during checkpoint f2fs: fix wrong written_valid_blocks counting ...
Diffstat (limited to 'arch')